- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
static NSString *CellID=@"CellID";
MyCell *cell=[tableView dequeueReusableCellWithIdentifier:CellID];
if (cell==nil) {
cell=[[[NSBundle mainBundle]loadNibNamed:@"MyCell" owner:self options:nil]lastObject];
}
cell.lb_Name.text=self.name;
return cell;
}
自定义UITableViewCell
最新推荐文章于 2022-07-20 22:37:49 发布