我需要在UIButton的左侧显示一个电子邮件地址,但它被定位到中心。
有什么方法来设置对齐到UIButton的左边?
这是我当前的代码:
UIButton* emailBtn = [[UIButton alloc] initWithFrame:CGRectMake(5,30,250,height+15)];
emailBtn.backgroundColor = [UIColor clearColor];
[emailBtn setTitle:obj2.customerEmail forState:UIControlStateNormal];
emailBtn.titleLabel.font = [UIFont systemFontOfSize:12.5];
[emailBtn setTitleColor:[[[UIColor alloc]initWithRed:0.121 green:0.472 blue:0.823 alpha:1]autorelease] forState:UIControlStateNormal];
[emailBtn addTarget:self action:@selector(emailAction:) forControlEvents:UIControlEventTouchUpInside];
[elementView addSubview:emailBtn];
[emailBtn release];
在Swift 5.0和Xcode 10.2中
有两种方法
1)直接方法
btn.contentHorizontalAlignment = .left
2) SharedClass示例(编写一次,然后使用每个ware)
这是您的共享类(像这样您可以访问所有组件属性)
import UIKit
class SharedClass: NSObject {
static let sharedInstance = SharedClass()
private override init() {
}
}
//UIButton extension
extension UIButton {
func btnProperties() {
contentHorizontalAlignment = .left
}
}
在你的ViewController调用中
button.btnProperties()//This is your button
tl;dr:使用UIButton。配置-做titlealign = .center,但也添加一个副标题,使其字体微观。
我们在iOS 15+上,我们使用新的UIButton。配置api,按钮现在默认多行,你试图弄清楚-我如何使按钮的标题居中或尾对齐,而不是默认的(领先)。例如,你有一个图像和一个按钮标题在下面,你想让它居中。
这样做似乎是合理的:
configuration.titleAlignment = .center
但这改变不了什么。
通过在Interface Builder中尝试,我注意到以下情况:只有当标题中有副标题时,titleAlignment才会起作用。
我不确定这是苹果方面的疏忽(稍后可能会修复),还是有一个很好的理由。在任何情况下,我们都需要一种没有字幕的方式来让它工作。也许是一些聪明的contentInset或UIControl。contentthorizontalalignment可以做到这一点,但我担心在我们必须考虑其他语言,动态类型等情况下使用这些。
这里有一个解决方案,仍然是俗气的,但可以完成工作:
添加一个只包含空格的副标题,然后使字体微观,例如0.01。
这是如何在代码中做到这一点,假设你已经在使用UIButton。配置:
configuration.titleAlignment = .center
configuration.title = "Hello hi"
configuration.subtitle = " "
configuration.subtitleTextAttributesTransformer = UIConfigurationTextAttributesTransformer({ input in
var output = input
output.font = .systemFont(ofSize: 0.01)
return output
})
这不是一个理想的解决方案,将来可能会出现问题,但对于某些用例来说,这是目前可用的最佳解决方案。