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

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

@protocol AddSetTableViewCellProtocol <NSObject>

- (void)onDone:(NSString *)text;

@end

@interface AddSetTableViewCell : MWMTableViewCell

@property (weak, nonatomic) IBOutlet UITextField * textField;

@property (weak, nonatomic) id<AddSetTableViewCellProtocol> delegate;

@end