在我的应用程序中,我已经在uinavigation项目上应用了一个图像。它在iOS 5中正常运行但在iOS 6上进行了扩展。我在导航栏中没有向左或向右的条形按钮项目。我搜索得太多但找不到答案。如果你知道答案,请帮助我。这是我的代码 -
UIImageView *navigationImage=[[UIImageView alloc]initWithFrame:CGRectMake(0, 0, 98, 34)];
navigationImage.image=[UIImage imageNamed:@"topNav-logo.png"];
self.navigationItem.titleView=navigationImage;
和图像显示如下 - ![在此输入图像说明] [1]
它应该显示为较低的图像,但它显示为在ios 6中展开,它在ios 5中运行良好。
提前致谢
@Marko Nikolovski-结果是![在此处输入图像描述] [2]
答案 0 :(得分:5)
我从iOS 6开始遇到同样的问题,并找到了最疯狂的解决方法:
再创建一个相同维度的UIImageView。然后将navigationImage添加为子视图。在我的情况下,这将阻止自动调整大小。
UIImageView *workaroundImageView = [[UIImageView alloc] initWithFrame:CGRectMake(0, 0, 98, 34)];
[workaroundImageView addSubview:navigationImage];
self.navigationItem.titleView=workaroundImageView;
如果有人找到合适的解决方案或解释,请发布。
答案 1 :(得分:0)
我的项目中有以下代码,在iOS 5和iOS 6下运行正常。您可以试试这个:
self.navigationItem.titleView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"topNav-logo.png"]];
此外,请确保同时具有@ 2x和常规尺寸的图像。