零行代码实现tableView、collectionView无数据占位图,一行代码实现loading提示

零行代码实现tableView、collectionView无数据时展示占位图,同时可以进行简单的自定义,或者完全自定义, 考虑了有tableHeaderView的情况。使用协议模式实现自定义方法。拖入工程即可使用。
loading菊花提示:

# import "UITableView+PlaceHolder.h"
...
tableView.loading = YES;//显示菊花
tableView.loading = NO;//隐藏菊花
...

具体代码请移步:GitHub Demo地址
功能实现的核心是利用runtime替换系统的reloadData方法。

/** 加载时, 交换方法 ,类加载时会调用该方法*/
+ (void)load {
    //  只交换一次
    static dispatch_once_t onceToken;
    dispatch_once(&onceToken, ^{ 
        Method reloadData    = class_getInstanceMethod(self, @selector(reloadData));
        Method sp_reloadData = class_getInstanceMethod(self, @selector(sp_reloadData));
        method_exchangeImplementations(reloadData, sp_reloadData);
        
        Method dealloc       = class_getInstanceMethod(self, NSSelectorFromString(@"dealloc"));
        Method sp_dealloc    = class_getInstanceMethod(self, @selector(sp_dealloc));
        method_exchangeImplementations(dealloc, sp_dealloc);
    });
}

通过tableView的代理方法判断是不是有数据

//  刷新完成之后检测数据量
    dispatch_async(dispatch_get_main_queue(), ^{
        
        NSInteger numberOfSections = [self numberOfSections];
        BOOL havingData = NO;
        for (NSInteger i = 0; i < numberOfSections; i++) {
            if ([self numberOfRowsInSection:i] > 0) {
                havingData = YES;
                break;
            }
        )
    });

默认显示一行文字:暂无数据。可以实现点击事件代理方法:

#pragma mark - 默认的占位图点击事件(完全自定义的view自己加点击事件就好了)
- (void)sp_placeHolderViewClick {
    NSLog(@"点击了重新加载");
}

自定义时实现如下代理方法:

/** 完全自定义 */
- (UIView *)sp_placeHolderView {
    UILabel *label = [[UILabel alloc]initWithFrame:CGRectMake(0, 0, 200, 100)];
    label.backgroundColor = [UIColor cyanColor];
    label.text = @"这是一个自定义的View";
    label.textAlignment = NSTextAlignmentCenter;
    return label;
}

/** 只自定义图片 */
- (UIImage *)sp_placeHolderImage {
    return [UIImage imageNamed:@"note_list_no_data"];
}

/** 只自定义文字 */
- (NSString *)sp_placeHolderMessage {
    return @"自定义的无数据提示";
}

/** 只自定义文字颜色 */
- (UIColor *)sp_placeHolderMessageColor {
    return [UIColor orangeColor];
}

/** 只自定义偏移量 */
- (NSNumber *)sp_placeHolderViewCenterYOffset {
    return @(0);
}

你可能感兴趣的:(零行代码实现tableView、collectionView无数据占位图,一行代码实现loading提示)