NSString
あるビューから別のビューに渡す必要があります。私は私の中で行いますfirst view controller
:
-(IBAction)btnCreate_click:(id)sender
{
CreateMatchTableViewController *matcObj = [[CreateMatchTableViewController alloc]init];
matcObj.createBtnPressed = @"pressed";
[self.tabBarController setSelectedIndex:1];
}
CreateMatchTableViewController
私の2番目のView Controllerであり、2番目のView ControllerのcreateBtnPressed
iaNSString
オブジェクトです。
2viewDidLoad
番目のビュー コントローラー:
- (void)viewDidLoad
{
[super viewDidLoad];
// MatchListViewController *obj = [[MatchListViewController alloc]init];
NSString *stringFromFirstView = createBtnPressed;
NSLog(@"check===>%@",stringFromFirstView);//...always null
}
助けてください!!