mirror of
https://codeberg.org/comaps/comaps
synced 2025-12-21 13:53:37 +00:00
To expand with full Organic Maps and Maps.ME commits history run: git remote add om-historic [om-historic.git repo url] git fetch --tags om-historic git replace squashed-history historic-commits
17 lines
534 B
Objective-C
17 lines
534 B
Objective-C
#import "MWMEditorCommon.h"
|
|
#import "MWMTableViewCell.h"
|
|
|
|
@interface MWMEditorAdditionalNameTableViewCell : MWMTableViewCell
|
|
|
|
@property(nonatomic, readonly) NSInteger code;
|
|
|
|
- (void)configWithDelegate:(id<MWMEditorAdditionalName>)delegate
|
|
langCode:(NSInteger)langCode
|
|
langName:(NSString *)langName
|
|
name:(NSString *)name
|
|
errorMessage:(NSString *)errorMessage
|
|
isValid:(BOOL)isValid
|
|
keyboardType:(UIKeyboardType)keyboardType;
|
|
|
|
@end
|