第一篇簡書
還不是很清楚 簡書的編寫規(guī)范 作為iOS開發(fā)工程師,第一眼就喜歡上了簡書,美觀大方簡潔
當(dāng)然,以后寫代碼隨筆是少不了的,還不清楚 代碼區(qū)域別人為什么會變色
等等問題
找到了 ?
static NSString * cellid=@"TwoTableViewCell";
TwoTableViewCell * cell=[tableView dequeueReusableCellWithIdentifier:cellid];
if(cell==nil)
{
cell= (TwoTableViewCell*)[[TwoTableViewCell alloc]initWithStyle:UITableViewCellStyleDefault reuseIdentifier:cellid];
cell.selectionStyle=UITableViewCellSelectionStyleNone;
}
if (ARRAYHASVALUE(_dataArr)) {
[cell layoutCellWithCell:cell withData:_dataArr withIndexPath:indexPath];
}
return cell;
'''