// // AutoLayoutScrollView.h // smartRhino // // Created by tederen on 2019/11/2. // Copyright © 2019 tederen. All rights reserved. // #import NS_ASSUME_NONNULL_BEGIN typedef NS_ENUM(NSInteger, Oritation) { horizontal = 1, vertical, }; @interface AutoLayoutScrollView : UIScrollView /** 自适应内容滚动尺寸 @param type 滚动方向 */ -(void) autoContentSize:(Oritation) type; @end NS_ASSUME_NONNULL_END