This is about an outlet not synthesising correctly (UIScrollView)
In one particular case, i have an interface declared as:
@interface VC_Create_Preview : UIViewController <UIScrollViewDelegate> {
UIScrollView *scrollView;
}
@property (nonatomic, retain) IBOutlet UIScrollView *scrollView;
And in the implementation....
@synthesize scrollView;
But in debug mode i see that my self->scrollView always has a 0x0 next to it. Performing operations like
CGRect frame = scrollView.frame;
always returns a origin, height, width of zero (i suspect because it did not synthesise correctly)
Does 0x0 mean that it does not point to any location in memory? Does this mean that it did not synthesize correctly? Could it be that there is a broken link somewhere from the outlet to the scrollview in IB?
Cheers Kevin