在导航栏ios7中添加子视图

时间:2014-04-07 06:47:53

标签: ios ios7

我想在导航栏上添加两个按钮和一个图像视图。我写了下面的代码来添加图片,但它没有用。

 UIView *customView=[[UIView alloc] initWithFrame:CGRectMake(0, 0, 200, 44)];
 UIImageView *logo=[[UIImageView alloc]init];
 logo.image=[UIImage imageNamed:@"sdas.jpeg"];
[customView addSubview:logo];
self.navigationController.navigationItem.titleView=customView;

2 个答案:

答案 0 :(得分:0)

试试这个

self.navigationItem.titleView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"Your Image Name"]];

答案 1 :(得分:0)

尝试使用initWithCustomView使用here添加按钮作为描述this waysetBackgroundImage:forMetrics