私は2つの画面を持っています。2番目の画面でナビゲーションバーが変更された後、最初の画面のボタンをクリックしたい。ストーリーボードを使用しています
最初の画面コード
-(IBAction) ChangeSecondPageTitle: (id) sender {
SecondViewController *second=[[self storyboard] instantiateViewControllerWithIdentifier:@"second"];
second.modalTransitionStyle=UIModalTransitionStyleFlipHorizontal;
second.detailTitle.topItem.title=@"example";
[self presentModalViewController:second animated:YES];
}
セカンドスクリーン.h
@property (弱い、非アトミック) IBOutlet UINavigationBar *detailTitle;