在IOS 7中将标题设置为UIToolBar

前端之家收集整理的这篇文章主要介绍了在IOS 7中将标题设置为UIToolBar前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我在下面声明了一个UIToolBar按钮:
UIToolbar *toolbar = [[UIToolbar alloc] init];
toolbar.frame = CGRectMake(0.0,0.0,self.view.frame.size.width,64.0);

我还有一个UIBarButtonItem作为后退按钮添加到左侧.但是,如何在UIToolbar中添加居中的标签标题

解决方法

UILabel *lblTitle = [[UILabel alloc] initWithFrame:CGRectMake(50,50,150,20)];
lblTitle.backgroundColor = [UIColor clearColor];
lblTitle.textColor = [UIColor blackColor];
lblTitle.textAlignment = NSTextAlignmentLeft;
[self.view addSubview:lblTitle];
UIBarButtonItem *typeField = [[UIBarButtonItem alloc] initWithCustomView:lblTitle];   
toolBar.items = [NSArray arrayWithArray:[NSArray arrayWithObjects:backButton,spaceBar,lblTitle,nil]];

这会解决你的问题.

原文链接:https://www.f2er.com/iOS/331082.html

猜你在找的iOS相关文章