1
時... 的了ControlState-被默認設置爲正常使用圖像設置更改UIButton的形象不同的按鈕被點擊
當用戶點擊一個按鈕,它改變形象該按鈕,因爲我設置該按鈕的目標以符合所需的方法。我需要改變所有其它單選按鈕的圖像時, - (空)RADIOBUTTONAClicked:被稱爲
-(void)RadioButtonACLicked:{
//code to change radioButton A, the code i have works
// Code to change all other buttons does not work.
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{ .... //配置單元...
ButtonB創作
radioButtonB = [UIButton buttonWithType:UIButtonTypeCustom];
[radioButtonB addTarget:self action:@selector(radioButtonBClicked:)forControlEvents:UIControlEventTouchUpInside];
[radioButtonB setImage:img2 forState:UIControlStateNormal];
所以被點擊單選按鈕時,我所需要的所有其它按鈕圖像設置爲相反。
不兼容的指針賦值 – KING