我已經爲自定義UITableView單元格創建了一個筆尖,並且遵循了文檔和不同的教程來獲取這個錯誤並且它不會放棄。我研究了這個錯誤,並且人們說它是在#import一個頭文件的時候,但是你沒有添加這個Framework。那麼,UIKit會自動添加,並且我將其刪除並重新添加以獲得更好的效果,並且此錯誤不會失效。這裏是我的- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
'無法實例化名爲UITableViewCellContentView的類'iPhone 3.1.2
static NSString *MyIdentifier = @"PersonCell";
PersonCell *cell = (PersonCell *)[tableView dequeueReusableCellWithIdentifier:MyIdentifier];
if(cell == nil)
{
[[NSBundle mainBundle] loadNibNamed:@"PersonCell" owner:self options:nil];
cell = personCell;
}
return cell;
什麼是UITableViewCellContentView?該類不在SDK中。 – gerry3 2010-01-28 02:42:33