iOS開發(fā)之UITableView數(shù)據(jù)為空的提示頁面

經(jīng)常用UITableView杆故,一定會(huì)遇到數(shù)據(jù)為空的情況,這時(shí)需要在空頁面上放一個(gè)圖片和一行文字提示數(shù)據(jù)為空饲趋,下面整理了兩種方法來實(shí)現(xiàn)這個(gè)功能敛惊。

第一個(gè)是繼承UITableView,在新類中集成圖片和文字

#import <UIKit/UIKit.h>
#import "Const.h"

@interface WFEmptyTableView : UITableView

@property (nonatomic, assign) BOOL showEmptyTipView; // 是否顯示背景提示文字
@property (nonatomic, assign) NSInteger vOffset;
@property (nonatomic, copy) NSString *tipString;     // 提示文字
@property (nonatomic, copy) NSString *tipImageName;  // 提示圖片

@end

具體實(shí)現(xiàn)

#import "WFEmptyTableView.h"

@implementation WFEmptyTableView {
    UIView *_customBackView;
    UIImageView *_tipImageView;
    UILabel *_label;
    CGRect _imageFrame;
    CGRect _labelFrame;
    double _scale;
}

- (WFEmptyTableView *)initWithFrame:(CGRect)frame style:(UITableViewStyle)style {
    self = [super initWithFrame:frame style:style];
    if (self) {
        [self setupViews];
    }
    return self;
}

- (void)setupViews {
    _customBackView = [[UIView alloc] initWithFrame:self.frame];
    _customBackView.backgroundColor = [UIColor yellowColor];
    
    _tipImageView = [[UIImageView alloc] initWithFrame:CGRectMake((kScreenWidth-200/2)/2, self.frame.size.height/3, 200/2, 200/2)];
    [_customBackView addSubview:_tipImageView];
    _imageFrame = _tipImageView.frame;
    
    _label = [[UILabel alloc] initWithFrame:CGRectMake(0, CGRectGetMaxY(_tipImageView.frame), kScreenWidth, 100)];
    
    _label.backgroundColor = [UIColor clearColor];
    _label.textAlignment = NSTextAlignmentCenter;
    _label.textColor = [UIColor lightGrayColor];
    _label.font = [UIFont systemFontOfSize:16];
    _label.lineBreakMode = NSLineBreakByCharWrapping;
    _label.numberOfLines = 0;
    [_customBackView addSubview:_label];
    _labelFrame = _label.frame;
    
}

- (void)setShowEmptyTipView:(BOOL)showEmptyTipView {
    _showEmptyTipView = showEmptyTipView;
    if (showEmptyTipView) {
        [self addSubview:_customBackView];
    } else {
        [_customBackView removeFromSuperview];
    }
}

- (void)setTipString:(NSString *)tipString {
    _tipString = tipString;
    
    NSMutableAttributedString * attributedString1 = [[NSMutableAttributedString alloc] initWithString:tipString];
    NSMutableParagraphStyle * paragraphStyle1 = [[NSMutableParagraphStyle alloc] init];
    [paragraphStyle1 setLineSpacing:15];
    [paragraphStyle1 setAlignment:NSTextAlignmentCenter];
    [attributedString1 addAttribute:NSParagraphStyleAttributeName value:paragraphStyle1 range:NSMakeRange(0, [tipString length])];
    [_label setAttributedText:attributedString1];
    
    [self resetFrame];
}

- (void)setTipImageName:(NSString *)tipImageName {
    _scale = 1;
    UIImage *image = [UIImage imageNamed:tipImageName];
    _scale = image.size.height*1.0 / image.size.width;
    _tipImageView.image = image;
    
    if (isnan(_scale)) {
        _scale = 1;
    }
    [self resetFrame];
}

- (void)setVOffset:(NSInteger)vOffset {
    _label.frame = CGRectMake(CGRectGetMinX(_label.frame), CGRectGetMinY(_label.frame)+vOffset, CGRectGetWidth(_label.frame), CGRectGetHeight(_label.frame));
    _tipImageView.frame = CGRectMake(CGRectGetMinX(_tipImageView.frame), CGRectGetMinY(_tipImageView.frame)+vOffset, CGRectGetWidth(_tipImageView.frame), CGRectGetHeight(_tipImageView.frame));
}

- (void)resetFrame {
    _tipImageView.frame = CGRectMake(0, CGRectGetMinY(_tipImageView.frame), 150, 150 * _scale);
    _tipImageView.center = CGPointMake(kScreenWidth / 2.0, _tipImageView.center.y);
    
    _label.frame = CGRectMake(CGRectGetMinX(_label.frame), CGRectGetMaxY(_tipImageView.frame), CGRectGetWidth(_label.frame), CGRectGetHeight(_label.frame));
}

@end

還有一種方法换棚,是用Category

#import <UIKit/UIKit.h>

@interface UITableView (WFEmpty)

@property (nonatomic, strong, readonly) UIView *emptyView;

-(void)addEmptyViewWithImageName:(NSString*)imageName title:(NSString*)title;

@end

具體實(shí)現(xiàn)

#import "UITableView+WFEmpty.h"
#import <objc/runtime.h>

static char UITableViewEmptyView;

@implementation UITableView (WFEmpty)

@dynamic emptyView;

- (UIView *)emptyView
{
    return objc_getAssociatedObject(self, &UITableViewEmptyView);
}

- (void)setEmptyView:(UIView *)emptyView
{
    [self willChangeValueForKey:@"HJEmptyView"];
    objc_setAssociatedObject(self, &UITableViewEmptyView,
                             emptyView,
                             OBJC_ASSOCIATION_ASSIGN);
    [self didChangeValueForKey:@"HJEmptyView"];
}


-(void)addEmptyViewWithImageName:(NSString*)imageName title:(NSString*)title
{
    if (!self.emptyView)
    {
        CGRect frame = CGRectMake(0, 0, self.frame.size.width, self.frame.size.height);
        UIImage* image = [UIImage imageNamed:imageName];
        NSString* text = title;
        
        UIView* noMessageView = [[UIView alloc] initWithFrame:frame];
        noMessageView.backgroundColor = [UIColor clearColor];
        
        UIImageView *carImageView = [[UIImageView alloc] initWithFrame:CGRectMake((frame.size.width-image.size.width)/2, 60, image.size.width, image.size.height)];
        [carImageView setImage:image];
        [noMessageView addSubview:carImageView];
        
        UILabel *noInfoLabel = [[UILabel alloc] initWithFrame:CGRectMake(0, 160, frame.size.width, 20)];
        noInfoLabel.textAlignment = NSTextAlignmentCenter;
        noInfoLabel.textColor = [UIColor lightGrayColor];
        noInfoLabel.text = text;
        noInfoLabel.backgroundColor = [UIColor clearColor];
        noInfoLabel.font = [UIFont systemFontOfSize:20];
        [noMessageView addSubview:noInfoLabel];
        
        [self addSubview:noMessageView];
        
        self.emptyView = noMessageView;
    }
    
}

@end
最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末固蚤,一起剝皮案震驚了整個(gè)濱河市,隨后出現(xiàn)的幾起案子价说,更是在濱河造成了極大的恐慌风秤,老刑警劉巖,帶你破解...
    沈念sama閱讀 207,113評(píng)論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件领迈,死亡現(xiàn)場(chǎng)離奇詭異碍沐,居然都是意外死亡,警方通過查閱死者的電腦和手機(jī)尘喝,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,644評(píng)論 2 381
  • 文/潘曉璐 我一進(jìn)店門斋陪,熙熙樓的掌柜王于貴愁眉苦臉地迎上來,“玉大人缔赠,你說我怎么就攤上這事友题∴脱撸” “怎么了?”我有些...
    開封第一講書人閱讀 153,340評(píng)論 0 344
  • 文/不壞的土叔 我叫張陵度宦,是天一觀的道長(zhǎng)踢匣。 經(jīng)常有香客問我告匠,道長(zhǎng),這世上最難降的妖魔是什么离唬? 我笑而不...
    開封第一講書人閱讀 55,449評(píng)論 1 279
  • 正文 為了忘掉前任凫海,我火速辦了婚禮,結(jié)果婚禮上男娄,老公的妹妹穿的比我還像新娘行贪。我一直安慰自己,他們只是感情好模闲,可當(dāng)我...
    茶點(diǎn)故事閱讀 64,445評(píng)論 5 374
  • 文/花漫 我一把揭開白布。 她就那樣靜靜地躺著尸折,像睡著了一般啰脚。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上实夹,一...
    開封第一講書人閱讀 49,166評(píng)論 1 284
  • 那天橄浓,我揣著相機(jī)與錄音,去河邊找鬼亮航。 笑死荸实,一個(gè)胖子當(dāng)著我的面吹牛,可吹牛的內(nèi)容都是我干的缴淋。 我是一名探鬼主播准给,決...
    沈念sama閱讀 38,442評(píng)論 3 401
  • 文/蒼蘭香墨 我猛地睜開眼,長(zhǎng)吁一口氣:“原來是場(chǎng)噩夢(mèng)啊……” “哼重抖!你這毒婦竟也來了露氮?” 一聲冷哼從身側(cè)響起,我...
    開封第一講書人閱讀 37,105評(píng)論 0 261
  • 序言:老撾萬榮一對(duì)情侶失蹤钟沛,失蹤者是張志新(化名)和其女友劉穎畔规,沒想到半個(gè)月后,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體恨统,經(jīng)...
    沈念sama閱讀 43,601評(píng)論 1 300
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡叁扫,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,066評(píng)論 2 325
  • 正文 我和宋清朗相戀三年,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了延欠。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片陌兑。...
    茶點(diǎn)故事閱讀 38,161評(píng)論 1 334
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡沈跨,死狀恐怖由捎,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情饿凛,我是刑警寧澤狞玛,帶...
    沈念sama閱讀 33,792評(píng)論 4 323
  • 正文 年R本政府宣布软驰,位于F島的核電站,受9級(jí)特大地震影響心肪,放射性物質(zhì)發(fā)生泄漏锭亏。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,351評(píng)論 3 307
  • 文/蒙蒙 一硬鞍、第九天 我趴在偏房一處隱蔽的房頂上張望慧瘤。 院中可真熱鬧,春花似錦固该、人聲如沸锅减。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,352評(píng)論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽怔匣。三九已至,卻和暖如春桦沉,著一層夾襖步出監(jiān)牢的瞬間每瞒,已是汗流浹背。 一陣腳步聲響...
    開封第一講書人閱讀 31,584評(píng)論 1 261
  • 我被黑心中介騙來泰國(guó)打工纯露, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留剿骨,地道東北人。 一個(gè)月前我還...
    沈念sama閱讀 45,618評(píng)論 2 355
  • 正文 我出身青樓埠褪,卻偏偏與公主長(zhǎng)得像懦砂,于是被迫代替她去往敵國(guó)和親。 傳聞我的和親對(duì)象是個(gè)殘疾皇子组橄,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 42,916評(píng)論 2 344

推薦閱讀更多精彩內(nèi)容