這是我的問題。我會創建一個自定義單元格而不創建自定義單元格類。 我知道這是可能的。我在storyboard中創建了一個帶有標籤的原型單元格的tableviewcontroller。在attibutes中,我設置了單元名稱「mycell」。而我使用的代碼是:CustomCell without customCell class
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{ static NSString *CellIdentifier = @"mycell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil)
{ cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];}
UILabel *title = (UILabel*) [cell viewWithTag:1];
title.text = @"Hi";
return cell;
}
但是當我的應用程序運行時,我只看到一個沒有帶標籤的單元格的空表。
要退的numberOfRows方法的東西嗎? – 2013-04-24 10:55:06
嘗試:cell.title.text = @「Hi」;你確定你想顯示多少行。 – Sovannarith 2013-04-24 10:56:38
可以顯示UITableViewDataSource的代碼嗎? – Sovannarith 2013-04-24 11:01:16