diff options
Diffstat (limited to 'platform/ios')
-rw-r--r-- | platform/ios/Classes/MuPageView.h | 2 | ||||
-rw-r--r-- | platform/ios/Classes/MuTextSelectView.h | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/platform/ios/Classes/MuPageView.h b/platform/ios/Classes/MuPageView.h index e3c26549..f3b8c0d9 100644 --- a/platform/ios/Classes/MuPageView.h +++ b/platform/ios/Classes/MuPageView.h @@ -2,7 +2,7 @@ #import "MuTapResult.h" @protocol MuPageView --(int) number; +@property (NS_NONATOMIC_IOSONLY, readonly) int number; -(void) willRotate; -(void) showLinks; -(void) hideLinks; diff --git a/platform/ios/Classes/MuTextSelectView.h b/platform/ios/Classes/MuTextSelectView.h index 44d86333..eb5c9610 100644 --- a/platform/ios/Classes/MuTextSelectView.h +++ b/platform/ios/Classes/MuTextSelectView.h @@ -2,6 +2,6 @@ @interface MuTextSelectView : UIView - (instancetype) initWithWords:(NSArray *)_words pageSize:(CGSize)_pageSize; -- (NSArray *) selectionRects; -- (NSString *) selectedText; +@property (NS_NONATOMIC_IOSONLY, readonly, copy) NSArray *selectionRects; +@property (NS_NONATOMIC_IOSONLY, readonly, copy) NSString *selectedText; @end |