我的下一个视图未显示&在那我使用imageview&滚动视图。我的代码看起来像这样
-(void) tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
VolunteerPhotoDetail *volunteerPhotoDetail = [[VolunteerPhotoDetail alloc]initWithNibName:@"VolunteerPhotoDetail" bundle:nil];
volunteerPhotoDetail.indexRow = indexPath.row;
[self.navigationController pushViewController:volunteerPhotoDetail animated:YES];
NSLog(@" self.navigationController 0x%x", self.navigationController);
[volunteerPhotoDetail release];
}
nsl显示selg.navigationController的值,但不显示视图 我正确检查了所有IB的意见,所以请给我回答
答案 0 :(得分:0)
问题可能是因为您将捆绑设置为nil。
将{nil替换为[NSBundle mainBundle]