我想在导航栏和标签栏iOS中添加客户端徽标图像

时间:2012-12-28 10:57:13

标签: ios navigationbar

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

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

但会产生白色图像 我想将图像大显示为导航栏。

2.TabBarController - 这里我有5个Tabs在应用程序中,客户想要他的徽标在右边角。

有没有办法获得彩色徽标?

1 个答案:

答案 0 :(得分:1)

尝试使用此功能在导航栏中添加图片

// 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];