我正在创建一个工具栏,上面有 2 个标签。
在左边我想要我的税标签。在右边我想要我的总标签。
这是我在 viewDidLoad 方法中设置的代码。
self.taxLabel = [[UILabel alloc] initWithFrame:CGRectMake(0.0 , 11.0f, self.view.frame.size.width, 21.0f)];
self.taxLabel.backgroundColor = [UIColor clearColor];
self.taxLabel.textColor = [UIColor whiteColor];
self.taxLabel.text = @"$$$$.$$ TAX";
self.totalLabel = [[UILabel alloc] initWithFrame:CGRectMake(0.0 , 11.0f, self.view.frame.size.width, 21.0f)];
self.totalLabel.backgroundColor = [UIColor clearColor];
self.totalLabel.textColor = [UIColor greenColor];
[self.totalLabel setTextAlignment:UITextAlignmentRight];
self.totalLabel.text = @"$$$$.$$";
// create the bar button item where we specify the label as a view to use to init with
UIBarButtonItem *taxButton = [[UIBarButtonItem alloc] initWithCustomView:self.taxLabel];
UIBarButtonItem *flex = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemFlexibleSpace target:nil action:nil];
UIBarButtonItem *totalButton = [[UIBarButtonItem alloc] initWithCustomView:self.totalLabel];
NSArray *toolbarItemArr = [NSArray arrayWithObjects:taxButton, flex, totalButton, nil];
[infoBar setItems:toolbarItemArr animated:YES];
我遇到的问题是灵活的空间似乎没有做任何事情。如果我将总标签文本设置为左对齐,它会与税标签重叠。就好像它们被叠加到工具栏上一样。
标签也可以相互重叠。我不确定我做错了什么。但我认为这与我如何初始化框架有关。
任何帮助,将不胜感激。