123456789101112131415161718192021222324252627282930313233343536373839404142 |
- #import <UIKit/UIKit.h>
- @interface EARestrictedScrollView : UIScrollView
- @property (nonatomic, copy, readonly) NSArray<UIView *> *containedSubviews;
- #pragma GCC diagnostic push
- #pragma GCC diagnostic ignored "-Wproperty-attribute-mismatch"
- @property (nonatomic, assign, getter=alignedContentOffset, setter=setAlignedContentOffset:) CGPoint contentOffset;
- #pragma GCC diagnostic pop
- @property (nonatomic, assign) CGRect restrictionArea;
- - (void)setContentOffset:(CGPoint)contentOffset __attribute__((unavailable("use dot notation to access property")));
- - (CGPoint)contentOffset __attribute__((unavailable("use dot notation to access property")));
- @end
|