AutoLayoutScrollView.h 458 B

12345678910111213141516171819202122232425262728
  1. //
  2. // AutoLayoutScrollView.h
  3. // smartRhino
  4. //
  5. // Created by tederen on 2019/11/2.
  6. // Copyright © 2019 tederen. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. typedef NS_ENUM(NSInteger, Oritation) {
  11. horizontal = 1,
  12. vertical,
  13. };
  14. @interface AutoLayoutScrollView : UIScrollView
  15. /**
  16. 自适应内容滚动尺寸
  17. @param type 滚动方向
  18. */
  19. -(void) autoContentSize:(Oritation) type;
  20. @end
  21. NS_ASSUME_NONNULL_END