我知道这是一个愚蠢的问题。但是我没有找到解决这个问题的方法。
图片图标位于图片资产(即Assets.xcassets)中。
如果我从Xcode(即在调试模式下)运行应用程序,则会显示该消息。
但是如果我从TestFlight(即发布模式)安装应用程序,则不会显示该信息。
这是我的代码。
在ViewDidLoad()中的某个地方
arriCon = [[NSMutableArray alloc]initWithObjects:@"home_icon",@"s_Internammatches_icon",@"InternalRating",@"s_tournaments_icon",@"s_EmailManagement_icon",@"s_Canteen_icon",@"Meeting_icon",@"s_event_icon",@"s_stats_icon",@"ic_poll",@"s_ourclub_icon",@"Album_icon",@"s_setting_icon", nil];
和viewForHeaderInSection()中的某个地方
(是的,我在UITableView
中有多个标题,在那儿,我正在显示图像)
headerView.imgiCon.image = [UIImage imageNamed:[arriCon objectAtIndex:section]];