uitableview中reloaddata cell中的label重叠显示而不是刷新显示 ...

使用带有identifier的cell,写一个UITableViewCell类,然后在该类中声明IBOutlet 

@property(nonatomic,strong) IBOutlet UILabel *timeLabel;

并在storyboard中连接。

在uitableview 中的cellForRowAtIndexPath方法中

static NSString *CellIdentifier = @"meetingCell";

    MeetingCell *meetingCell= [tableView dequeueReusableCellWithIdentifier:CellIdentifier];

并在cell中对label进行设置,这样的话,就会reloadData后cell会重新加载cell中的东西。

你可能感兴趣的:(uitableview中reloaddata cell中的label重叠显示而不是刷新显示 ...)