我尝试使用Xcode 4.2创建一个秒表/计时器,但出现此错误?

时间:2012-02-08 10:26:06

标签: iphone objective-c nstimer

我正在复制youtube的这个人,但我认为他有Xcode 3或者其他什么可以帮助我 http://www.youtube.com/watch?v=5jmTQi98vec&feature=related 这就是我想要复制的人,这就是我要做的事情:

  

#import

 @interface AppDelegate : UIResponder <UIApplicationDelegate> {



       IBOutlet UILabel *time;

       NSTimer *myticker;

    }

@property (strong, nonatomic) UIWindow *window;


-(IBAction)start;

-(IBAction)stop;
               expected identifier or '('  
-(IBAction)reset;

-(void)showActivity;
     

@end

你可以帮忙吗?

2 个答案:

答案 0 :(得分:0)

顶部有一个空的#import语句。这是故意的吗?

答案 1 :(得分:0)

只观看了vid一分钟,但他正在他的主视图控制器中制作计时器,而你的是在委托中,但除此之外你的import语句是空的。在代表的顶部应该是:

#import <UIKit/UIKit.h>