मुझे बाईं ओर से ईमेल पता प्रदर्शित करने की आवश्यकता है 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];