gpt4 book ai didi

objective-c - 为 UITabBar 设置事件图像

转载 作者:搜寻专家 更新时间:2023-10-30 19:55:14 24 4
gpt4 key购买 nike

我已经以编程方式定义了一个 UITabBar,但是当项目处于事件状态时,如何设置自定义 UITabBar 图标?

这是我声明 UITabBar 按钮的代码,但是当它处于事件状态时如何设置自定义图像?

- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil
{
self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];

if (self) {
self.title = NSLocalizedString(@"Free", @"Free");
self.tabBarItem.image = [UIImage imageNamed:@"Free.png"];
}

return self;
}

最佳答案

iOS7 中的新功能,现在的方法是使用 tabBarItem 上的 selectedImage 属性:

self.tabBarItem.selectedImage = [UIImage imageNamed:@"Free_Selected.png"];

关于objective-c - 为 UITabBar 设置事件图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10701857/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com