【发布时间】:2011-02-16 03:40:20
【问题描述】:
我正在 iphone 中以编程方式开发带有按钮的视图中的图像。现在我想为下一个和上一个按钮添加按钮背景图像。我想以编程方式为这些按钮添加图像。
如何在 iphone 中添加按钮图像。
【问题讨论】:
我正在 iphone 中以编程方式开发带有按钮的视图中的图像。现在我想为下一个和上一个按钮添加按钮背景图像。我想以编程方式为这些按钮添加图像。
如何在 iphone 中添加按钮图像。
【问题讨论】:
// 像这样添加按钮
UIImage *redButtonImage = [UIImage imageNamed:@"ExitButton.png"];
UIButton *redButton = [UIButton buttonWithType:UIButtonTypeCustom];
redButton.frame = CGRectMake(280.0, 10.0, 29.0, 29.0);
[redButton setBackgroundImage:redButtonImage forState:UIControlStateNormal];
[view addSubview:redButton];
【讨论】:
你可以试试这个
UIImage *buttonImage = [UIImage imageNamed:@"image.png"];
//create the button and assign the image
UIButton *button = [UIButton buttonWithType:UIButtonTypeCustom];
[button setImage:buttonImage forState:UIControlStateNormal];
//create a UIBarButtonItem with the button as a custom view
//UIBarButtonItem *customBarItem = [[UIBarButtonItem alloc] initWithCustomView:button];
[button addTarget:self action:@selector(clickActionItem:) forControlEvents:UIControlEventTouchUpInside];
祝你好运
【讨论】:
使用它来设置按钮中的图像
[yourButton setBackgroundImage:yourImage forState:UIControlStateNormal];
【讨论】:
试试这个,
UIButton *yourButton = [UIButton buttonWithType:UIButtonTypeCustom];
yourButton.frame = CGRectMake(0, 0, 80, 40);
[yourButton setBackgroundImage:[UIImage imageNamed:@"backgroungImage.png"] forState:UIControlStateNormal];
[self.view yourButton];
【讨论】: