私はシングルトンで宣言されたこのプロパティを持っています:
@property (nonatomic, copy) void (^onUpdate)();
クラスでシングルトンを開始した後、次の行があります。
[self.singleton.onUpdate = ^{
CGAffineTransform rot = CGAffineTransformMakeRotation(degreesToRadian(angle));
[UIView animateWithDuration:0.1 animations:^{
myself.object.transform = rot;
}];
}];
この最後の行に「予想される識別子」エラーがあります...何ですか?
何か案は?