@interface QuickViewControllViewController : UIViewController<UIScrollViewDelegate>{
IBOutlet UIWebView *myWebView;
UIScrollView *scrollView;
IBOutlet UIImageView *imagePreview;
UIImage *source;
}
@end
如果我不希望它们暴露在类之外,这些声明与以 @property 开头的声明有什么区别?当您命令从情节提要中拖动它们时,Xcode 会自动将它们设为 @properties。我宁愿不使用@property,所以我不必使用self.property。我最好让它们成为属性吗?
谢谢