0
UIButton *ticketButtonObj=
    [[UIButton alloc]initWithFrame:CGRectMake(140.0f 100.0f, 390.0f, 40.0f)];   
UIImage *buttonicon1=[UIImage alloc];
buttonicon1=[UIImage imageNamed:@"Generalticket.png"];

左揃えのbuttonicon1 ..で ticketButtonObj の背景を設定するにはどうすればよいですか?

plsは私を助けてください... rajuによる感謝と敬意。

4

1 に答える 1

3
UIButton *ticketButtonObj = [[UIButton alloc] initWithFrame:CGRectMake(140.0f 100.0f, 390.0f, 40.0f)];
UIImage* buttonicon1 = [UIImage imageNamed:@"Generalticket.png"];
[ticketButtonObj setImage:image forState:UIControlStateNormal];
ticketButtonObj.contentHorizontalAlignment = UIControlContentHorizontalAlignmentLeft;

または、背景画像を設定する場合:

[ticketButtonObj setBackgroundImage:image forState:UIControlStateNormal];

ただし、背景の配置を設定することはできません。

于 2009-06-08T06:09:06.023 に答える