ある画面(つまりfirstScreen)から次の画面(つまりsecondFile)へのナビゲートを行っています。私のコードはfirstFile.mにあります:
- (IBAction)onClick:(id)sender
{
secondFile* dest = [[secondFile alloc] initWithNibName:@" secondFile" bundle:nil];
[self.navigationController pushViewController:dest animated:YES];
NSString* uname = txtUserName.text;
NSLog(@"usr name is : %@",uname);
}
firstScreen.h
<UIKit/UIKit.h>
@interface nevigationViewController : UIViewController
@property (weak, nonatomic) IBOutlet UIButton *btnNevigation;
@property (weak, nonatomic) IBOutlet UITextField *txtUserName;
- (IBAction)onClick:(id)sender;
@end
問題は、ログが印刷されてもナビゲーションが実行されないことです。上記のコードの何が問題になっているのか教えてください。