簡単な方法の 1 つは、NSNotificationCenterを使用することです。この例を参照してください。
オブジェクトを送信するときに、AddFields から通知を投稿します
[[NSNotificationCenter defaultCenter] postNotificationName:@"notificaiton_name" object:object_you_want_to_send];
そして、親View Controllerに NSNotificationCenter のオブザーバーを追加します
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(method_you_want_to_call:) name:@"notificaiton_name" object:nil];
method_you_want_to_callを定義します:このようなもの
-(void) method_you_want_to_call:(NSNotification *) obj{
//lets say you are sending string as object
NSString *string=(NSString *) [obj object] ;
}
注: notificaiton_nameは一致する必要があります
Delegate Protocolメソッドを使用できる他の方法...この例を参照してください