I have a little problem, I want to change the view of my NSTabView from a Tab View...If I create an action with
on the window controller (where I define the nstabview outlet) all work perfectly...if I do something like this
also if I do
where is the error?
Code:
selectNextTabViewItem
on the window controller (where I define the nstabview outlet) all work perfectly...if I do something like this
Code:
AppController *controller = [[AppController alloc] init];
[controller.tabView selectNextTabViewItem:nil];
also if I do
Code:
- (void) next
{
[self.tabView selectNextTabViewItem:nil];
}
AppController *controller = [[AppController alloc] init];
[controller next];
where is the error?