私有属性
私有属性应该声明在类实现文件的延展(匿名的类目)中。有名字的类目(例如 NYTPrivate
或 private
)永远都不应该使用,除非要扩展其他类。
推荐:
@interface NYTAdvertisement ()
@property (nonatomic, strong) GADBannerView *googleAdView;
@property (nonatomic, strong) ADBannerView *iAdView;
@property (nonatomic, strong) UIWebView *adXWebView;
@end