摘要:
自定义的步骤比较简单 最后到了写代码 引用自定义的cell的时候static NSString *CellIdentifier = @"DownloadCell"; static BOOL nibsRegistered = NO; if (!nibsRegistered) { UINib *nib = [UINib nibWithNibName:@"DownloadTableCell" bundle:nil]; [tableView registerNib:nib forCellReuseIdentifier:CellIdentifier]; ... 阅读全文