Je dois afficher une adresse e-mail sur le côté gauche d'un UIButton
, mais elle est positionnée au centre.
Y a-t-il un moyen de définir l'alignement sur le côté gauche d'un UIButton
?
Voici mon code actuel :
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];
0 votes
Pour Swift 5.1, vous pouvez consulter ma réponse stackoverflow.com/questions/2765024/…