forked from organicmaps/organicmaps
[cleanup] [ios] Fixed non-copying property of immutable NSCopying type.
This commit is contained in:
parent
0f71cb83de
commit
05651dcc61
6 changed files with 6 additions and 6 deletions
|
@ -2,7 +2,7 @@
|
|||
|
||||
@interface UIButton (RuntimeAttributes)
|
||||
|
||||
@property(nonatomic) NSString * localizedText;
|
||||
@property(copy, nonatomic) NSString * localizedText;
|
||||
|
||||
- (void)setBackgroundColorName:(NSString *)colorName;
|
||||
- (NSString *)backgroundColorName;
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
@interface UILabel (RuntimeAttributes)
|
||||
@property (nonatomic) NSString * localizedText;
|
||||
@property (copy, nonatomic) NSString * localizedText;
|
||||
@end
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
@interface UITextField (RuntimeAttributes)
|
||||
|
||||
@property (nonatomic) NSString * localizedPlaceholder;
|
||||
@property (copy, nonatomic) NSString * localizedPlaceholder;
|
||||
@property (nonatomic) MWMInputValidator * validator;
|
||||
@property (nonatomic, readonly) BOOL isValid;
|
||||
|
||||
|
|
|
@ -6,6 +6,6 @@
|
|||
|
||||
@interface MWMTextView (RuntimeAttributes)
|
||||
|
||||
@property (nonatomic) NSString * localizedPlaceholder;
|
||||
@property (copy, nonatomic) NSString * localizedPlaceholder;
|
||||
|
||||
@end
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
@interface WebViewController : MWMViewController <UIWebViewDelegate>
|
||||
|
||||
@property (nonatomic) NSURL * m_url;
|
||||
@property (nonatomic) NSString * m_htmlText;
|
||||
@property (copy, nonatomic) NSString * m_htmlText;
|
||||
// Set to YES if external browser should be launched
|
||||
@property (nonatomic) BOOL openInSafari;
|
||||
|
||||
|
|
|
@ -11,6 +11,6 @@
|
|||
@property (nonatomic) BOOL selected;
|
||||
|
||||
@property (nonatomic) UIImage * iconImage;
|
||||
@property (nonatomic) NSString * localizedText;
|
||||
@property (copy, nonatomic) NSString * localizedText;
|
||||
|
||||
@end
|
||||
|
|
Loading…
Add table
Reference in a new issue