在我iPod
的{{1}}应用中,我在iphone
控制器中看到了more
按钮。当我点击它时,我会看到tabbar
中未显示的其他tabs
。
我需要知道如何在点击tababrcontroller
按钮后显示的tableview
中的名称前添加图片。
这是image that will show you what exactly i want to achieve
2.。)如何将图像添加到按钮,最后它应以[image] [text]
格式显示答案 0 :(得分:1)
对于您要添加到标签栏的每个View Controller,请执行以下操作:
viewTab1controller = [[ViewTab1Controller alloc] initWithNibName:@"ViewTab1" bundle:nil];
viewTab1controller.title = @"Title";
navigationTab1Controller = [[[UINavigationController alloc] initWithRootViewController:viewTab1controller] autorelease];
navigationTab1Controller.tabBarItem.image = [[UIImage imageNamed:@"icon.png"] autorelease];
[viewTab1controller release];
如果你为每个“标签”执行此操作,它应该适用于其他图标。
答案 1 :(得分:0)
您可以使用以下
cell.imageView.image = [[UIImage alloc] initWithData: data];
其中cell是UITableViewCell