gpt4 book ai didi

ios - 更改 UITabBarController 中的标题

转载 作者:行者123 更新时间:2023-11-28 19:07:26 24 4
gpt4 key购买 nike

我一直在尝试使用以下代码更改我的标签页的标题,

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

if (self) {

self.title = @"City Search";
self.tabBarItem = [[UITabBarItem alloc] initWithTabBarSystemItem:UITabBarSystemItemSearch tag:1];
}

delegate = (AWSAppDelegate *)[[UIApplication sharedApplication] delegate];

return self;
}

这给了我一个 iOS 本地搜索图标和测试。但我想做的是添加我自己的标题,我尝试执行以下操作,

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

if (self) {

self.tabBarItem = [[UITabBarItem alloc] init]
self.tabBarItem.image = myImage;
self.tabBarItem.title = @"FooBar";
}

delegate = (AWSAppDelegate *)[[UIApplication sharedApplication] delegate];

return self;
}

然而,这只是给我一个没有任何文本的空白选项卡,其他一切正常。你能帮忙吗?我正在使用 iOS 6

最佳答案

这是一个简单的解决方案, 您的图片必须是黑白的并且尺寸合适 30x30

    self.title=NSLocalizedString(@"foobar", nil);
self.tabBarItem.image=[UIImage imageNamed:@"image.png"];

关于ios - 更改 UITabBarController 中的标题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19063664/

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