我是一名學生,正在學習和爲我的學校開發一款應用程序,我剛剛開始並且做得很好,但是我收到錯誤「Expected identifier or' 「我已經花了幾天的時間閱讀帖子和谷歌,並沒有解決方案,我發現正在爲我工作預期的標識符或'(' - xCode
我想在我的應用程序的第二個選項卡上的圓形按鈕鏈接到學校。網站
這裏是.H:
#import <UIKit/UIKit.h>
@interface SecondViewController : UIViewController {
}
- (IBAction)Website:(id)sender;
@end
這裏是我的.m錯誤COM mented:
#import "SecondViewController.h"
@interface SecondViewController()
@end
@implementation SecondViewController
-(IBAction)Website {
[[UIApplication sharedApplication ] openURL:[NSURL URLWithString:@"http://www.google.com"]];
}
{ **// Error is on this line[23]**
[super viewDidLoad];
// Do any additional setup after loading the view, typically from a nib.
}
- (void)didReceiveMemoryWarning
{
[super didReceiveMemoryWarning];
// Dispose of any resources that can be recreated.
}
- (IBAction)Website;
- (IBAction)Website:(id)sender; {
}
@end
我該如何解決這個小傢伙?非常感謝你! 此外,.h文件由xCode組成,通過簡單地控制從按鈕拖動到.h並創建一個動作。這可能是原因嗎?
你沒有viewDidload方法! –