would you please break my confusion.
If I define a property in a class
@interface Class
{
UIScrollView * _scrollView;
}
@property (nonatomic, retain) IBOutlet UIScrollView * scrollView;
@end
@implement
@synthesize scrollView = _scrollView;
@end
When I wanna implement it, I can use
_scrollView.contentSize = xxx
or
self.scrollView.contentSize = xxx
What's the difference between the two description?
Thanks for your answering...