我试图在我的视图控制器中的多个方法中使用变量整数。secondsLeft 变量工作正常,但 otherNumber 变量不起作用。我得到错误:初始化元素不是编译时常量。关于我应该如何做到这一点的任何想法?谢谢你!
@interface ViewController ()
@end
@implementation ViewController
@synthesize countDown,Timerlbl;
int secondsLeft = 500;
int otherNumber =[(AppDelegate *)[UIApplication sharedApplication].delegate otherNumber];