電子メールアドレスを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 = UIControlContentHorizontalAlignmentLeft;
また、コンテンツを左のインセットに調整することもできます。そうしないと、テキストが左の境界線に触れます。
emailBtn.contentEdgeInsets = UIEdgeInsetsMake(0, 10, 0, 0);
コードの調整をしたくない場合は、インターフェースビルダーを使用することもできます。ここで私はテキストを整列させたままにし、またそれをいくらかインデントします:
ボタンにも画像を配置できることを忘れないでください。
Swift 3以降の場合:
button.contentHorizontalAlignment = .left
UIButton *btn;
btn.contentVerticalAlignment = UIControlContentVerticalAlignmentTop;
btn.contentHorizontalAlignment = UIControlContentHorizontalAlignmentLeft;
ボタン内のコンテンツ全体の位置を変更したくない場合は、emailBtn.titleEdgeInsets
を使用するほうがcontentEdgeInsets
より優れています。
Swift 4 +
button.contentHorizontalAlignment = .left
button.contentVerticalAlignment = .top
button.contentEdgeInsets = UIEdgeInsets(top: 10, left: 10, bottom: 10, right: 10)
ここでそれを行う方法となぜそれがそのように動作するのかを説明します: http://cocoathings.blogspot.com/2013/03/how-to-make-uibutton-text-left-or- right.html
@DyingCactusのコードに小さなエラーがあります。これは、ボタンのタイトルをより適切に制御するためにボタンのテキストを揃えるためにUIBabtonにUILabelを追加する正しい解決策です。
NSString *myLabelText = @"Hello World";
UIButton *myButton = [UIButton buttonWithType:UIButtonTypeCustom];
// position in the parent view and set the size of the button
myButton.frame = CGRectMake(myX, myY, myWidth, myHeight);
CGRect myButtonRect = myButton.bounds;
UILabel *myLabel = [[UILabel alloc] initWithFrame: myButtonRect];
myLabel.text = myLabelText;
myLabel.backgroundColor = [UIColor clearColor];
myLabel.textColor = [UIColor redColor];
myLabel.font = [UIFont fontWithName:@"Helvetica Neue" size:14.0];
myLabel.textAlignment = UITextAlignmentLeft;
[myButton addSubview:myLabel];
[myLabel release];
お役に立てれば....
アル
Swift 2.0の場合
emailBtn.contentHorizontalAlignment = UIControlContentHorizontalAlignment.Left
誰かが必要とするならこれは助けになることができます。
やってみる
button.semanticContentAttribute = UISemanticContentAttributeForceRightToLeft;
Swift 5.0およびXcode 10.2
アプローチする方法は2つあります
1)直接アプローチ
btn.contentHorizontalAlignment = .left
2)SharedClassの例(一度書いてすべての製品を使う)
これはあなたの共有クラスです(このようにあなたは全てのコンポーネントのプロパティにアクセスします)
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