2013-10-01 69 views

回答

2

爲每個按鈕設置標籤值並訪問按鈕操作的值,如buttonname.tag。

設置變量值:

enter image description here

,並從按鈕的作用是這樣

- (IBAction)doMyAction:(UIButton *)sender { 

    NSLog(@"Selected Button %d",sender.tag); 
} 

如果您創建編程做這樣的標籤值:

UIButton *button1 = [[UIButton alloc] initWithFrame:CGRectMake(0,100,50,50)]; 
button1.tag = 01; 

並按上述方式檢索。

相關問題