提问人: 提问时间:12/2/2008 最后编辑:7 revs, 5 users 65%user8359 更新时间:8/11/2021 访问量:99233
将 UILabel 添加到 UIToolbar
Adding a UILabel to a UIToolbar
问:
我正在尝试向工具栏添加标签。按钮效果很好,但是当我添加标签对象时,它会崩溃。有什么想法吗?
UIBarButtonItem *setDateRangeButton = [[UIBarButtonItem alloc] initWithTitle:@"Set date range"
style:UIBarButtonItemStyleBordered
target:self
action:@selector(setDateRangeClicked:)];
UILabel *label = [[UILabel alloc] initWithFrame:CGRectMake(5, 5, 20, 20)];
label.text = @"test";
[toolbar setItems:[NSArray arrayWithObjects:setDateRangeButton,label, nil]];
// Add the toolbar as a subview to the navigation controller.
[self.navigationController.view addSubview:toolbar];
// Reload the table view
[self.tableView reloadData];
答:
看看这个
[[UIBarButtonItem alloc] initWithCustomView:yourCustomView];
基本上,每个项目都必须是一个“按钮”,但它们可以使用您需要的任何视图进行实例化。下面是一些示例代码。请注意,由于其他按钮通常位于工具栏上,因此在标题按钮的每一侧都放置了间隔符,使其保持居中。
NSMutableArray *items = [[self.toolbar items] mutableCopy];
UIBarButtonItem *spacer = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemFlexibleSpace target:nil action:nil];
[items addObject:spacer];
[spacer release];
self.titleLabel = [[UILabel alloc] initWithFrame:CGRectMake(0.0 , 11.0f, self.view.frame.size.width, 21.0f)];
[self.titleLabel setFont:[UIFont fontWithName:@"Helvetica-Bold" size:18]];
[self.titleLabel setBackgroundColor:[UIColor clearColor]];
[self.titleLabel setTextColor:[UIColor colorWithRed:157.0/255.0 green:157.0/255.0 blue:157.0/255.0 alpha:1.0]];
[self.titleLabel setText:@"Title"];
[self.titleLabel setTextAlignment:NSTextAlignmentCenter];
UIBarButtonItem *spacer2 = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemFlexibleSpace target:nil action:nil];
[items addObject:spacer2];
[spacer2 release];
UIBarButtonItem *title = [[UIBarButtonItem alloc] initWithCustomView:self.titleLabel];
[items addObject:title];
[title release];
[self.toolbar setItems:items animated:YES];
[items release];
评论
我使用这个技巧做的一件事是在 之上实例化一个,否则这是不可能的。例如,这里我有一个 2 , a ,然后是另一个 .我想在弹性空间和最后一个(右侧)按钮之间插入一个。所以在我的中,我做了以下几点,UIActivityIndicatorView
UIToolBar
UIToolBar
UIBarButtonItem
FlexibleSpaceBarButtonItem
UIBarButtonItem
UIActivityIndicatorView
UIToolBar
RootViewController
- (void)viewDidLoad {
[super viewDidLoad];// Add an invisible UIActivityViewIndicator to the toolbar
UIToolbar *toolbar = (UIToolbar *)[self.view viewWithTag:767];
NSArray *items = [toolbar items];
activityIndicator = [[UIActivityIndicatorView alloc] initWithFrame:CGRectMake(0.0f, 0.0f, 20.0f, 20.0f)];
[activityIndicator setActivityIndicatorViewStyle:UIActivityIndicatorViewStyleWhite];
NSArray *newItems = [NSArray arrayWithObjects:[items objectAtIndex:0],[items objectAtIndex:1],[items objectAtIndex:2],
[[UIBarButtonItem alloc] initWithCustomView:activityIndicator], [items objectAtIndex:3],nil];
[toolbar setItems:newItems];}
评论
对于那些使用Interface Builder进行布局的用户,也可以单独使用Interface Builder来执行此操作。UIToolBar
要向 a 添加 a,您需要通过将新对象拖到 . 将自动创建一个将使用您的自定义 .接下来,将 a 添加到图形中,并以图形方式进行编辑以匹配您喜欢的样式。然后,您可以根据需要直观地设置固定和/或可变垫片,以适当地定位您的垫片。UILabel
UIToolBar
UIView
UIToolBar
UIView
UIToolBar
IB
UIBarButtonItem
UIView
UILabel
UIView
UILabel
UILabel
您还必须设置 和 to 的背景,才能在 .UILabel
UIView
clearColor
UIToolBar
UILabel
评论
与 Matt R 类似,我使用了界面构建器。但是我想在里面放 1,这样我就可以将一些文本加粗而其他文本不加粗(如邮件应用程序)。所以UIWebView
- 改为添加 Web 视图。
- 取消选中不透明
- 确保背景颜色清晰
- 将所有东西连接起来
IBOutlet
- 使用下面的内容来获得透明的背景,使工具栏闪耀
html
法典:
NSString *path = [[NSBundle mainBundle] bundlePath];
NSURL *baseURL = [NSURL fileURLWithPath:path];
NSString *html = [NSString stringWithFormat:@"<html><head><style>body{font-size:11px;text-align:center;background-color:transparent;color:#fff;font-family:helvetica;vertical-align:middle;</style> </head><body><b>Updated</b> 10/11/12 <b>11:09</b> AM</body></html>"];
[myWebView loadHTMLString:html baseURL:baseURL];
试试这个:
UILabel *label = [[UILabel alloc] initWithFrame:CGRectMake(140 , 0, 50, 250)];
[label setBackgroundColor:[UIColor clearColor]];
label.text = @"TEXT";
UIView *view = (UIView *) label;
[self.barItem setCustomView:view];
注意:是从对象库中添加的,放置在两个灵活的空间之间。self.barItem
UIBarButtonItem
另一种方法是删除线条并更改 (width) 的参数,使其填满整个工具栏,并在代码中自行设置中间对齐方式和字体,[self.barItem setCustom:view]
label
如果要在工具栏视图上添加视图,可以尝试以下操作:
[self.navigationController.tabBarController.view addSubview:yourView];
我发现 answerBot 的答案非常有用,但我想我在 Interface Builder 中找到了一种更简单的方法:
- 创建一个 UIBarButtonItem 并将其添加到界面中的工具栏 建筑工人
- 取消选中此 BarButtonItem 的“enabled”
将此 BarButtonItem 插入到类中的属性(位于 Swift,但在 Obj-C 中非常相似):
@IBOutlet private weak var lastUpdateButton: UIBarButtonItem! // Dummy barButtonItem whose customView is lastUpdateLabel
为 Label 本身添加另一个属性:
private var lastUpdateLabel = UILabel(frame: CGRectZero)
在 viewDidLoad 中,添加以下代码以设置 标签,并将其添加为 BarButtonItem 的 customView
// Dummy button containing the date of last update lastUpdateLabel.sizeToFit() lastUpdateLabel.backgroundColor = UIColor.clearColor() lastUpdateLabel.textAlignment = .Center lastUpdateButton.customView = lastUpdateLabel
要更新文本,请执行以下操作:
UILabel
lastUpdateLabel.text = "Updated: 9/12/14, 2:53" lastUpdateLabel.sizeToFit()
结果:
每次更新标签文本时都必须调用lastUpdateLabel.sizetoFit()
评论
UILabel* label = [[UILabel alloc] init]; label.text = @"Hello"; label.font = [UIFont systemFontOfSize:16]; [label sizeToFit]; self.barItem.customView = label;
详
- Xcode 10.2.1 (10E1001), 斯威夫特 5
完整样本
import UIKit
class ViewController: UIViewController {
private weak var toolBar: UIToolbar?
override func viewDidLoad() {
super.viewDidLoad()
var bounds = UIScreen.main.bounds
let bottomBarWithHeight = CGFloat(44)
bounds.origin.y = bounds.height - bottomBarWithHeight
bounds.size.height = bottomBarWithHeight
let toolBar = UIToolbar(frame: bounds)
view.addSubview(toolBar)
var buttons = [UIBarButtonItem]()
buttons.append(UIBarButtonItem(barButtonSystemItem: .add, target: self, action: #selector(ViewController.action)))
buttons.append(UIBarButtonItem(barButtonSystemItem: .camera, target: self, action: #selector(ViewController.action)))
buttons.append(UIBarButtonItem(barButtonSystemItem: .flexibleSpace, target: nil, action: nil))
buttons.append(UIBarButtonItem(barButtonSystemItem: .flexibleSpace, target: nil, action: nil))
buttons.append(ToolBarTitleItem(text: "\(NSDate())", font: .systemFont(ofSize: 12), color: .lightGray))
buttons.append(UIBarButtonItem(barButtonSystemItem: .flexibleSpace, target: nil, action: nil))
buttons.append(UIBarButtonItem(barButtonSystemItem: .cancel, target: self, action: #selector(ViewController.action)))
toolBar.items = buttons
self.toolBar = toolBar
}
@objc func action() { print("action") }
}
class ToolBarTitleItem: UIBarButtonItem {
init(text: String, font: UIFont, color: UIColor) {
let label = UILabel(frame: UIScreen.main.bounds)
label.text = text
label.sizeToFit()
label.font = font
label.textColor = color
label.textAlignment = .center
super.init()
customView = label
}
required init?(coder aDecoder: NSCoder) { super.init(coder: aDecoder) }
}
结果
评论
可以使用禁用的 BarButtonItem
let resultsLabel = UIBarButtonItem(title: "number of results", style: .plain, target: self, action: nil)
resultsLabel.isEnabled = false
Swift 中的解决方案:
执行此操作的一种方法是创建一个视图,然后将其作为自定义视图添加到工具栏中,然后将其添加到工具栏中。
例如:UILabel
UIBarButtonItem
class ViewController: UIViewController {
override func viewDidLoad() {
super.viewDidLoad()
navigationController?.setToolbarHidden(false, animated: false)
let textLabel = UILabel()
textLabel.font = UIFont.systemFont(ofSize: 17)
textLabel.text = "Text Label" // Change this to be any string you want
let textButton = UIBarButtonItem(customView: textLabel)
let spacer = UIBarButtonItem(barButtonSystemItem: .flexibleSpace, target: nil, action: nil)
setToolbarItems([spacer, textButton, spacer], animated: false)
}
}
注意: 将标签放在工具栏的中心
flexibleSpace
注意:如果没有选项卡栏,工具栏将占据屏幕底部。
评论