2つのViewController間でデータを渡す必要があります。これが私のコードです。
最初のビューコントローラ用
-(void)editBotton {
Carttable *second=[[Carttable alloc]init];
UINavigationController *nav = [[UINavigationController alloc] initWithRootViewController:second];
nav.modalTransitionStyle=UIModalTransitionStyleCrossDissolve;
[self.navigationController pushViewController:second animated:YES];
NSString *temp=titlela.text;//titlela is UILabel
NSLog(@"%@",temp);
self.cart=second;
cart.cnftitle=temp;
}
私のカート可能なビューコントローラーで.h
@property(nonatomic,retain)NSString *cnftitle;
そして私も合成しました
- (void)viewDidLoad
{
[super viewDidLoad];
NSLog(@"%@",cnftitle);
}
1つのNSlogは私のテキストをラベルに印刷し、別のNSlogはNULLとして印刷します...。
私は何かが足りないのですか?