我的iPhone应用程序的UI
中有一些导航栏。现在,我想在导航栏中心的导航栏上添加两个图像。
我已经成功在导航栏上添加了两个UIImageView
,但是我的问题是我有两个带有标签的UIImageView
。
让我向您展示快照...
现在我的问题是我不知道如何在导航栏中的UIImageView
附近添加这种标签。.因此,如果有人可以为此指导我,那么它将对我有很大帮助。
我已经使用此代码成功在导航栏上插入了两个图像。
UIImageView *Messageview = [[UIImageView alloc] initWithImage:[UIImage imageNamed :"message.png"]];
Messageview.frame=CGRectMake(10, 0, 40, 40);
UIImageView *BirthdayView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:"birthday.png"]];
//titleView.frame=CGRectMake(60, 0, 50, 50);
UIBarButtonItem *flexible = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemFlexibleSpace target:nil action:nil];
[flexible setWidth:20];
UIBarButtonItem *flexible1 = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemFlexibleSpace target:nil action:nil];
[flexible setWidth:20];
UIBarButtonItem *MessageBtn=[[UIBarButtonItem alloc]initWithCustomView:Messageview];
UIBarButtonItem *BirthdayBtn=[[UIBarButtonItem alloc]initWithCustomView:BirthdayView];
self.navigationItem.rightBarButtonItems=[NSArray arrayWithObjects:rofileBtn,flexible,BirthdayBtn,MessageBtn,flexible1,nil];
请尽快指导我。
最佳答案
我认为这对您有帮助。
UIView *msgView=[[UIView alloc]initWithFrame:CGRectMake(10, 0, 40, 40)];
UIImageView *Messageview =[[UIImageView alloc]initWithImage:[UIImage imageNamed:@"message.png"]];
Messageview.frame=CGRectMake(0, 0, 20, 20);
[msgView addSubview:Messageview];
UILabel *lbl=[[UILabel alloc]initWithFrame:CGRectMake(30, 0, 20, 20)];
[lbl setText:@"Text"];
[msgView addSubview:lbl];
UIBarButtonItem *MessageBtn=[[UIBarButtonItem alloc]initWithCustomView:msgView];
关于iphone - 如何在iPhone的导航栏中使用UILabel添加UIImageView?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/16890433/