gpt4 book ai didi

ios - 我想在导航栏和选项卡栏 iOS 中添加客户端 Logo 图像

转载 作者:行者123 更新时间:2023-11-29 04:13:16 26 4
gpt4 key购买 nike

在我的应用程序(基础 SDK 4.3)中,客户希望在 2 个位置添加他的 Logo 1. 导航栏 -(从代码中调用栏按钮项)。我已经尝试过这个:

UIImage *myImage= [UIImage imageNamed:@"logo40.png"];
UIBarButtonItem* test= [[UIBarButtonItem alloc]initWithImage:myImage style:UIBarButtonItemStylePlain target:self action:nil];

但结果是白色图像我想显示像导航栏一样大的图像。

2.TabBarController - 这里我在应用程序中有 5 个选项卡,客户希望他的 Logo 位于右下角。

有什么办法可以得到一个彩色的标志吗?

最佳答案

尝试在导航栏中添加图像,

// Add image
UIImageView *notifyImage = [[UIImageView alloc] initWithFrame:CGRectMake(0, 0, 40, 40)];
[notifyImage setImage:[UIImage imageNamed:@"Notifier.png"]];


UIBarButtonItem *notificationButtn = [[UIBarButtonItem alloc] initWithCustomView:notifyImage];
[self.navigationItem setLeftBarButtonItem:arrayWithObject:notificationButtn animated:YES];

关于ios - 我想在导航栏和选项卡栏 iOS 中添加客户端 Logo 图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14068458/

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