Closed alexgsolutions closed 11 years ago
You need to implement -loadView
like this if you don't use Xibs:
- (void)loadView {
UIView * view = [[UIView alloc] initWithFrame:CGRectMake(0.f, 0.f, kViewWidth, kViewHeight)];
self.view = view;
[view release];
}
Implement loadView to create a view hierarchy programmatically, without using a nib.
I downloaded de CirculesMenu and I successfully implement in my app but I am stock in how to show the other ViewControllers in my apps. I can call the other VC with these code
My viewDidLoad code
Not loadview code yet implemented