14 lines
307 B
C
14 lines
307 B
C
|
|
#import "MWMTableViewCell.h"
|
||
|
|
|
||
|
|
@protocol MWMStreetEditorEditCellProtocol <NSObject>
|
||
|
|
|
||
|
|
- (void)editCellTextChanged:(NSString *)text;
|
||
|
|
|
||
|
|
@end
|
||
|
|
|
||
|
|
@interface MWMStreetEditorEditTableViewCell : MWMTableViewCell
|
||
|
|
|
||
|
|
- (void)configWithDelegate:(id<MWMStreetEditorEditCellProtocol>)delegate street:(NSString *)street;
|
||
|
|
|
||
|
|
@end
|