所以,我在下面發佈我的代碼。UITableViewController警告 - 幫助!
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath // I get a warning here Incomplete method implementation //
{
static NSString *CellIdentifier = @"Cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier] autorelease];
}
// Configure the cell...
NSLog (@"Dobby4");
NSInteger row = [indexPath row];
cell.text = [dogArray objectAtIndex:row];
//I get a warning for the line above-- 'text' is deprecated //
return cell;
}
所以,
1.我收到了警告 - 不完整的方法實現了該功能。
2.我得到另一個警告「文本」已棄用'
3.我試圖調試,並試圖打印一行「Dobby4」 - 它沒有打印。
我將不勝感激。
感謝您編輯Deepak。現在看起來好多了! – Legolas 2011-05-26 17:57:04