需要在“更多”按钮所在的标签栏项目中添加图像
Posted
技术标签:
【中文标题】需要在“更多”按钮所在的标签栏项目中添加图像【英文标题】:Need to add image in tab bar items where “More” button will be there 【发布时间】:2014-11-08 10:15:40 【问题描述】:我现在在一个通用应用程序中工作。这里的部署目标是 ios 6.0,我正在使用 Objective-C 开发 Xcode 6.0.1。我在标签栏项目上放置图像时遇到问题。我将在标签栏控制器中有 6 或 7 个标签栏项目,因此默认情况下会出现“更多”按钮。
我需要在每个标签栏项目上设置图像。
我需要帮助。
【问题讨论】:
【参考方案1】:如果标签栏控制器是您的根视图控制器,您可以在 appdeleagte 的 'didFinishLaunching..' 中执行此操作。
UITabBarController *tabBarController=(UITabBarController*) (self.window.rootViewController);
UITabBar *tabBar=tabBarController.tabBar;
UITabBarItem *tabBarItem1=[[tabBar items] objectAtIndex:0];//first tab bar
UIImage* selectedImage = [[UIImage imageNamed:@"yourImage"] imageWithRenderingMode:UIImageRenderingModeAlwaysTemplate];
[tabBarItem1 setImage:selectedImage];
【讨论】:
【参考方案2】:将自定义图像添加到标签栏
UITabBarItem *first = [[UITabBarItem alloc]initWithTitle:@"First" image:[UIImage imageNamed:@"first.png"] selectedImage:[UIImage imageNamed:@"second.png"]];
[self.tabBarController setTabBarItem:first];
【讨论】:
以上是关于需要在“更多”按钮所在的标签栏项目中添加图像的主要内容,如果未能解决你的问题,请参考以下文章