| 1234567891011121314151617181920212223 |
- //
- // UIScrollView+Empty.h
- // UIScrollViewEmpty
- //
- // Created by Jack on 2018/9/5.
- // Copyright © 2018年 United Software Applications. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "RAEmptyDataView.h"
- @interface UIScrollView (Empty)
- @property (nonatomic,strong) UIView *emptyView;
- //@property (assign) bool emptyDataViewManualsize;
- - (void)showEmpty;
- - (void)hideEmpty;
- //- (void)setEmptyDataViewManualsize:(bool)bManualsize;
- - (void)setEmptyContentViewBackgroupColor:(UIColor *)color;
- - (RAEmptyDataView *)emptyContentView;
- @end
|