私はcoocs2dを使用しています。コメントを付けるとタイトルエラーが発生します。私はヘッダーにUIKitをインポートしました。"構造体または共用体ではないメンバーのリクエスト" more
-(void)timerLoad:(NSTimer *)timer {
timer = [NSTimer scheduledTimerWithTimeInterval:(1.0/2.0) target:self selector:@selector(timerLoad:) userInfo:nil repeats:YES];
if (loadingBar.loading) { //error
[activity stopAnimating];
}
else {
[activity startAnimating];
}
if (loadingBar.loading = NO) { //error
activity.HIDDEN = YES; //thanks ;)
}
}
loadingBarがCCProgressTimerあると 活動がUIActivityIndicatorView
よろしくお願いします。私はC#.Netから来たので、可視/非表示のものは常に私を得る。 –
ありがとうございました。私はvisibleをhiddenに変更しました。私もCCProgressTimerをインポートしましたが、それはエラーに何もしませんでした。 #import btw haha – Joethemonkey101
コンパイラの実際の出力は何ですか? –