o prevent an infinite loop from happening in viewDidLoad, you should override loadView method in your .m
With following piece of code:
- (void)loadView
{
[super loadView];
}
By overriding, the control will not execute viewDidLoad multiple times.
With following piece of code:
- (void)loadView
{
[super loadView];
}
No comments:
Post a Comment