Hi,
I am developing an Universal Application. I have tabcontroller in my application and each tab displaying different views.
Now the problem is, when I have a button in any views, it displays the above error.
________________________________________________________
_______________________________________________________
_______________________________________________________
What am I doing wrong? Please help me.
Also, I want to change the views of a particular tab, when I click the next button from the current view.
I am developing an Universal Application. I have tabcontroller in my application and each tab displaying different views.
Now the problem is, when I have a button in any views, it displays the above error.
________________________________________________________
Code:
@interface ScreenFourViewController : UIViewController {
}
-(IBAction)NextView:(id)sender;
@end
Code:
@implementation ScreenFourViewController
-(IBAction)NextView:(id)sender
{
NSLog(@"Start button pressed"); }
What am I doing wrong? Please help me.
Also, I want to change the views of a particular tab, when I click the next button from the current view.
Last edited by a moderator: