使用带有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中的东西。