我需要一個動作,如果它有一個UIButton的任何標記值。如何檢查UIButton標記是否設置
如果它沒有標籤值需要採取另一個動作。
我試過以下,但它是崩潰。
-(void)buttonClick:(id)sender {
NSInteger t = [sender tag]; //crashing here if it has no tag value
if(t) {
//action
} else {
//another action
}
}
什麼是崩潰的消息? – Paulw11