在IOS 7中显示导航栏顶部的图像视图

时间:2014-07-04 07:53:56

标签: ios ios7 uiimageview navigationbar

我正在使用XIB创建一个视图,如下图所示。但我的问题是,如果我在导航栏和状态栏上设置图像视图,然后图像正常,但无法看到我的视图导航栏标题,背景颜色和后退按钮。你能告诉我我做错了吗?我是否需要在图像视图中添加导航栏?

这是我的代码:

NSURL* url = [NSURL URLWithString:self.strImage];
NSData *imageData = [NSData dataWithContentsOfURL:url];
if (imageData) {
    ivImage.image = [UIImage imageWithData:imageData];
}
else{
    ivImage.image = [UIImage imageNamed:@"Avatar-Retake_Profile.png"];
}

我的xib:

enter image description here

我的输出屏幕:

enter image description here

屏幕(我现在正在使用我的代码):

enter image description here

谢谢!

0 个答案:

没有答案