-3

画像を投稿するのに十分な評判がありません..なので、これを通して私を助けてくれることを願っています. 「@implementation viewcontroller」と書かれている3行目で、私のxcodeは「実装コンテキストに@endがありません」と言っています。

@interface ViewController ()
@end

@implementation ViewController

- (void)viewDidLoad {
    mainInt = 0;
    randomMain = [NSTimer scheduledTimerWithTimeInterval:(1.0/1.0) target:self selector:@selector(randomMainvoid) userInfo:nil repeats:YES];
}


- (void)randomMainvoid {
    mainInt +=1;
    label.text = [NSString stringWithFormat:@"%d", mainInt];       
}    


- (IBAction)Start {
    [startButton setHidden:YES];
    timer = [NSTimer scheduledTimerWithTimeInterval:(0.0088) target:self selector:@selector(onTimer) userInfo:nil repeats:YES];
    pos = CGPointMake(5.0, 6.0);
}
4

2 に答える 2