JHNoDataEmptyViewForT-C
empty view for tableview and collectionview
Base on : visibleCells
Logs:
3.add property 'jh_showNoDataEmptyView'.(2018-9-5)
- suggest you to use this property, 'jh_hideNoDataEmptyView' is alse keeped. You can choose one of them.
- automatic show effect too big, some system's collectionView is also effected.
- pod 1.1.0 update failed. Please use Release 1.1.0.
2.replace 'jh_showAutomatic' to 'jh_hideNoDataEmptyView'.(2018-7-24)
- set 'YES' if you do not want to show the 'JHNoDataEmptyView'
1.add property 'jh_showAutomatic'.(2018-07-23)
-
default is 'YES' -
set 'NO' if you do not want to show the 'JHNoDataEmptyView'
implement delegate to offer more infomations
delegate for UICollectionView
@protocol JHNoDataUICollectionViewDelegate <NSObject>
@optional
/// offer a image to show some infomation for user.
- (UIImageView *)imageViewForCollectionViewWhenDataSourceIsEmpty;
/// offer a label to show some infomation for user.
- (UILabel *)labelForCollectionViewWhenDataSourceIsEmpty;
/// the empty view that add to tableView.
- (void)emptyViewForCollectionViewWhenDataSourceIsEmpty:(UIView *)emptyView;
@end
delegate for UITableView
@protocol JHNoDataUITableViewDelegate <NSObject>
@optional
/// offer a image to show some infomation for user.
- (UIImageView *)imageViewForTableViewWhenDataSourceIsEmpty;
/// offer a label to show some infomation for user.
- (UILabel *)labelForTableViewWhenDataSourceIsEmpty;
/// the empty view that add to tableView.
- (void)emptyViewForTableViewWhenDataSourceIsEmpty:(UIView *)emptyView;
@end