1. ホーム
  2. ios

[解決済み] UIButtonのタイトルを左揃えにするにはどうしたらよいですか?

2022-03-20 16:03:49

質問

の左側にメールアドレスを表示させたいのですが。 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];

解決方法は?

contentHorizontalAlignmentを設定します。

emailBtn.contentHorizontalAlignment = .left;

また、コンテンツの左挿入を調整すると、テキストが左ボーダーに接触するようになります。

emailBtn.contentEdgeInsets = UIEdgeInsetsMake(0, 10, 0, 0);

// Swift 3 and up:
emailBtn.contentEdgeInsets = UIEdgeInsets(top: 0, left: 10, bottom: 0, right: 0);