Okay, this is my code in my .m file:
#import "TestViewViewController.h"
@implementation TestViewViewController
@synthesize scrollView2;
- (void)viewDidLoad
{
[scrollView2 setContentSize:CGSizeMake(320, 2000)];
[scrollView2 setScrollEnabled:YES];
}
And it's returning an error on the @synthesize line saying "No declaration of property "scrollView2" found in the interface
|