我在单例上声明了这个属性:
@property (nonatomic, copy) void (^onUpdate)();
在课堂上开始单身后,我有以下几行:
[self.singleton.onUpdate = ^{
CGAffineTransform rot = CGAffineTransformMakeRotation(degreesToRadian(angle));
[UIView animateWithDuration:0.1 animations:^{
myself.object.transform = rot;
}];
}];
我在最后一行出现“预期标识符”错误......什么?
有任何想法吗?