我只是在學習如何編寫代碼,所以感謝您對這個簡單問題的耐心等待。iOS比較按鈕標題字符串
這裏是我的代碼:
- (IBAction)buttonWasPressed:(id)sender {
NSString *buttonName = [sender titleForState:UIControlStateNormal];
if (buttonName == @"Button 1") {
do something
}
如何比較發件人傳遞給串按鈕的標題?
非常感謝您的幫助。
我還建議你花幾分鐘看看NSString及其方法,在這裏有很多你需要的地方:http://developer.apple.com/library/mac/ #documentation/Cocoa/Reference/Foundation/Classes/NSString_Class/Reference/NSString.html – csch 2011-03-11 07:56:41
感謝您的幫助!我一定會查看該文檔。 – 2011-03-13 04:02:45