UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier ];
繼承人爲我的數據源的代碼(左含視圖控制器作爲數據源,默認情況下)
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
// Return the number of sections.
return 1;
}
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
return 2;
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *CellIdentifier = @"albumCell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier ];
cell.textLabel.text = @"display cell";
return cell;
}
和鏈接到一個單元格的打印屏幕 http://img526.imageshack.us/img526/495/screenshot20121121at115.png
我做了適用於應用程序的蘋果示例應用程序,它的工作原理,我找不到我在那裏和w我在這裏做的帽子。嘗試了百次調試。有人可以幫我找出我的代碼問題嗎?
編輯:刪除這是從剩下的東西我註釋掉
編輯2代碼:我刪除的視圖,並再次把它和它的工作,你猜我在首搞砸事情
你在這一行''] objectForKey錯誤:@「名」];'',也許這是一個錯誤 – tkanzakic
] objectForKey:@「name」];奇怪你的編譯器沒有給出錯誤? – kidsid49
是否將標識添加到故事板單元? –