以下のコードをビューに追加すると、UITextField を追加したクラスがロードされます
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(addValueToTextField:) name:@"addValueToTextFiel" object:nil];
-(void)addValueToTextField:(NSNotification *) notification{
NSString* text = [notification text];
yourTextField.text = text;
}
そして、他のクラスの UITable ビューの Didselect デリゲートでは、次のコードを追加する必要があります
UITableViewCell *selectedCell =[tableView cellForRowAtIndexPath:indexPath];
[[NSNotificationCenter defaultCenter] postNotificationName:@"addValueToTextField" object:nil userInfo:selectedCell.Text];
または、代わりにカスタムデリゲートを使用できます