3

我是一名正在为我的学校学习和开发应用程序的学生。我刚刚开始并且做得很好。但是,我收到错误“预期标识符或'('”。我已经花了几天时间阅读帖子和谷歌搜索,但没有找到适合我的解决方案。

我正在尝试在我的应用程序的第二个选项卡上制作一个圆形矩形按钮,以链接到学校的网站。

这是.h:

#import <UIKit/UIKit.h>

@interface SecondViewController : UIViewController  {

}


- (IBAction)Website:(id)sender;



 @end

这是我的 .m 错误评论:

#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 并创建一个动作。这可能是原因吗?

4

1 回答 1

3

我认为您不小心删除了这一行:

- (void)viewDidLoad

在这条线之上

{      **// Error is on this line[23]**

但为简单起见,您可以删除它:

{      **// Error is on this line[23]**
     [super viewDidLoad];
    // Do any additional setup after loading the view, typically from a nib.
 }

因为你没有使用 viewDidLoad 做任何事情

于 2013-01-11T17:01:09.900 回答