xcode编译提示问题:Existing instance variable '_delegate' for property 'delegate' with assign attribute must be __unsafe_unretained
修改为:
__unsafe_unretained id<QuadCurveMenuDelegate> _delegate;
这样就可以编译通过了。