1234567891011121314151617181920212223 |
- //
- // UIScrollView+SPSBInitialization.h
- // 我的社保
- //
- // Created by shanp on 2021/4/21.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface UIScrollView (SPSBInitialization)
- + (instancetype)scrollView;
- + (instancetype)convenienceWithBackgroundColor:(nullable UIColor *)color;
- @property bool spsb_shouldChangeTouchesShouldCancelInContentView;
- @property bool spsb_touchesShouldCancelInContentView;
- @end
- NS_ASSUME_NONNULL_END
|