0

例: Detail コントローラにテキスト ビューを持つ Master Detail アプリケーション。ユーザーが戻るボタンを押したときに、テキスト ビュー データをマスター ビューに戻す最良の方法は何ですか?

4

1 に答える 1

0

でを作成し、@propertyMasterView離れるときにデータを返すことができますDetailView

基本的に、あなたはで持つことができ@propertyますMasterView

@property (strong, nonatomic) UITextView *textView;

たとえば、storyboard戻るために使用している場合。

[self performseguewithidentifier:@"MasterView"...]

のインスタンスを作成しますMasterView

MasterView *master = [[MasterView alloc] init];

そして、textViewfromDetailView@propertycreated inに渡しますMasterView

master.textView = detailTextView;

于 2014-01-08T18:33:49.447 に答える