@interface QuickViewControllViewController : UIViewController<UIScrollViewDelegate>{
IBOutlet UIWebView *myWebView;
UIScrollView *scrollView;
IBOutlet UIImageView *imagePreview;
UIImage *source;
}
@end
What is the differences between these declarations and ones starting with @property if I don't want them exposed outside of the class? Xcode automatically makes them @properties when you command drag them from storyboard. I'd rather not use the @property so I don't have to use self. Am I better off making them properties?
Thanks