my code inside of the applicationDidFinishLaunching
method is
self.view = UIScrollView
Why is this not working?
my code inside of the applicationDidFinishLaunching
method is
self.view = UIScrollView
Why is this not working?
Because you can't assign classes to Objective-C properties of type UIView; you have to instantiate the class before assigning the object to the property. Try this:
self.view = [[UIScrollView alloc] initWithFrame:CGRectMake(0.0, 0.0, 320.0, 480.0)];