- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *CellIdentifier = @"CustomCell";
CustomCell *cell = (CustomCell*) [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil)
{
NSArray *nib = [[NSBundle mainBundle] loadNibNamed:@"CustomCell" owner:self options:nil];
cell = [nib objectAtIndex:0];
}
iOS 6シミュレーターで完全に動作しますが、iOS 5シミュレーターでクラッシュし、次のエラーが発生します:'NSInternalInconsistencyException'、理由:'NIBデータが無効です。
アップルは何かを変えましたか?