試圖讓我的頭在此附近。我有一個UIButton與調用UIControlEventTouchDown事件:UIButton與UIControlEventTouchDown,圖像將不會更改爲選中,直到手指擡起
- (IBAction)pressButton:(id)sender {
NSLog(@"button pressed");
UIButton *button = (UIButton *)sender;
button.selected = YES;
}
我收到了,消息「按鈕按下」立即如預期。但是,直到我擡起手指,圖像纔會變爲選定的圖像。這是沒有意義的,因爲我一按按鈕就將按鈕設置爲選擇。我在界面生成器中爲我的圖片設置了「默認」,我的圖片在「選擇」下設置了。我曾嘗試在「突出顯示」中添加圖像,但這也不起作用。我在這裏做錯了什麼?
[button setNeedsDisplay];? – Kevin
試過......沒什麼。 – KexAri