0

在我的应用程序(基础 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 个选项卡,客户希望他的徽标位于右下角。

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

4

1 回答 1

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];
于 2012-12-28T11:04:38.703 回答