我在tableview单元格中添加了一个按钮.我的问题是当我在调用方法pressHonkBtn上更改其标题时:(id)发送者它没有更改其标题. 怎么解决这个问题. 使用您的代码: Objective-C的: -(IBAction)pre
怎么解决这个问题.
使用您的代码:Objective-C的:
-(IBAction)pressHonkBtn:(id)sender { UIButton *tempBtn = (UIButton *)sender; [tempBtn setTitle:@"YOUR_TITLE" forState:UIControlStateNormal];// YOUR_TITLE is your button title [tempBtn setTitle:@"YOUR_TITLE" forState:UIControlStateHighlighted]; }
迅速:
someUIButton.setTitle("String To Set", forState: UIControlState.Normal)
希望它能帮到你.