我正試圖在圓形矩形按鈕中放置箭頭符號。我打算使用它作爲反向/撤消按鈕..如何去做呢?如何在圓形矩形按鈕中添加箭頭圖標
是這樣的嗎?
- (IBAction)ReversePressed:(id)sender {
UIImage *image = [UIImage imageNamed:@"arrow.png"];
UIButton *button = [UIButton buttonWithType:UIButtonTypeCustom];
[button setImage:image forState:UIControlStateNormal];
}
我在哪裏添加這個?在(IBAction)的代碼中呢? – lakesh 2012-02-04 17:15:42
在'viewDidLoad'或任何你正在創建你的按鈕 – 2012-02-04 17:16:23
感謝您的幫助..真的很感激它... – lakesh 2012-02-04 17:17:17