I have a Problem to load some nibs in a view which is in another view.
I want to load this nibs like frames, do you have some interesting tips for me?
Thanks for help
Simon
//.h:
PopOverView *popView;
//.m:
- (void)viewDidLoad
{
[super viewDidLoad];
`popView = [[PopOverView alloc] initWithNibName:@"PopOverView" bundle:nil];`
}
-(IBAction)pressedButton:(id)sender
{
[self.view addSubView:popView.view];
}
He Doesnt know PopOverView. I dont want to PopOver I want to load another view into the grey sector. on the left side you have a Control Table and if you click on it you load will a site. like in html a new Frame. Error news: Use of undeclared identifier 'PopOverView'