#import "MWMBookmarkTitleCell.h" @interface MWMBookmarkTitleCell () @property (weak, nonatomic) IBOutlet UITextField * name; @property (weak, nonatomic) id delegate; @end @implementation MWMBookmarkTitleCell - (void)configureWithName:(NSString *)name delegate:(id)delegate { self.name.text = name; self.delegate = delegate; } - (void)textFieldDidEndEditing:(UITextField *)textField { [self.delegate didFinishEditingBookmarkTitle:textField.text]; } @end