我想添加填充到我的表格視圖單元格中。以爲我可以做這樣的事情,但沒有奏效。在TableViewCell上填充
-(CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
{
UITableViewCell * cell = [tableView cellForRowAtIndexPath:indexPath];
return cell.frame.size.height + 20;
}
那麼如何的tableView顯示爲?截圖?你想添加底部填充到單元格中的文本/內容嗎? – Bourne
Padding是什麼意思? – Legolas
No Bourne,我想要在文本上方留出更多空間並在文本下方留出更多空間。 完全像填充Html表格單元格中的工作。 – Flatron