123456789101112131415161718192021222324 |
- //
- // UIScrollView+SREmptyData.h
- // SREmptyDataViewDemo
- //
- // Created by https://github.com/guowilling on 2018/1/11.
- // Copyright © 2018年 SR. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @class SREmptyDataView;
- @interface UIScrollView (SREmptyData)
- @property (nonatomic, strong) SREmptyDataView *sr_emptyDataView;
- - (void)sr_startLoadingData;
- - (void)sr_endLoadingData;
- - (void)sr_showEmptyDataView;
- - (void)sr_hideEmptyDataView;
- @end
|