ฉันต้องการแสดงที่อยู่อีเมลจากด้านซ้ายของ a UIButton
แต่อยู่ในตำแหน่งกึ่งกลาง
มีวิธีใดในการตั้งค่าการจัดตำแหน่งทางด้านซ้ายของ a 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];