Welcome to mirror list, hosted at ThFree Co, Russian Federation.

MWMBookmarkTitleCell.h « Classes « Maps « iphone - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5799ec85230ad9e5729cc2eff7a64db1e108e482 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#import "MWMTableViewCell.h"

@protocol MWMBookmarkTitleDelegate <NSObject>

- (void)didFinishEditingBookmarkTitle:(NSString *)title;

@end

@interface MWMBookmarkTitleCell : MWMTableViewCell

- (void)configureWithName:(NSString *)name delegate:(id<MWMBookmarkTitleDelegate>)delegate;

@end