我正在将我的应用程序转换为ios7,但我真的不明白某些事情。例如,这个菜单的图标是白色的,为什么在我的应用程序中它们是灰色的?
图像由数组拾取:
menuItems = @[
[NVMenuItem initWithTitle:NSLocalizedString(@"HOME_LABEL", @"")
withImageName:@"recordMenuIcon.png"
itemType:NVHomeType requiresConnection:NO],
[NVMenuItem initWithTitle:NSLocalizedString(@"LIBRARY_LABEL", @"")
withImageName:@"libraryMenuIcon.png"
itemType:NVLibraryType requiresConnection:YES],
然后在
(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
有分配
cell.imageView.image = [UIImage imageNamed:item.cellImage];