我正在复制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
答案 0 :(得分:0)
顶部有一个空的#import语句。这是故意的吗?
答案 1 :(得分:0)
只观看了vid一分钟,但他正在他的主视图控制器中制作计时器,而你的是在委托中,但除此之外你的import语句是空的。在代表的顶部应该是:
#import <UIKit/UIKit.h>