我正在尝试在名为“ClockView”的 UIView 类中启动一个 NSTimer,并使用一个方法作为选择器来操作在 ViewController“ClockViewController”中声明的初始浮点数。
我的 ClockViewController 声明int timerIntWhite
为整数(例如 500)。我的 ClockView 需要这个值用于每秒- (void)start
运行一个方法的方法- (void)updateWhiteClock
:
- (void)start {
timerIntWhite = PLEASE HELP ME AT THIS POINT!;
randomTimerWhite = [NSTimer scheduledTimerWithTimeInterval:(1.0/1.0)target:self selector:@selector(updateWhiteClock) userInfo:nil repeats:YES];
}
是否可以在 ClockView 中访问 ClockViewController 的整数?