单击“更多”按钮时,将图像添加到tableview

时间:2012-02-11 16:20:10

标签: iphone objective-c

在我iPod的{​​{1}}应用中,我在iphone控制器中看到了more按钮。当我点击它时,我会看到tabbar中未显示的其他tabs

我需要知道如何在点击tababrcontroller按钮后显示的tableview中的名称前添加图片。

这是image that will show you what exactly i want to achieve

2.。)如何将图像添加到按钮,最后它应以[image] [text]

格式显示

2 个答案:

答案 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