-(void)countdown:(NSTimer *)timer{
_value -=1;
if ((_delegate != nil) && [_delegate respondsToSelector:@selector(countdownTicker:didUpdateValue:withAction)]) { // error: expected ':' before ')' token
[_delegate countdownTicker:self didUpdateValue:_value withAction:ZIMCountdownTickerTickAction];
}
if (_value <= 0) {
[self stop];
if ((_delegate != nil) && [_delegate respondsToSelector:@selector(countdownTicker:didUpdateValue:withAction)]) { // error: expected ':' before ')' token
[_delegate countdownTickerDidFinish:self];
}
}
}
-(void)countdown:(NSTimer *)timer{ _value -=1; if ((_delegate != nil) && [_delegate respondsToSelector:@selector(countdownTicker:didUpdateValue:withAction)]) { // error:
Share
Fix it exactly as the error says: