iOS9.3 __weak reference

1.升级xcode 7.3 后 会导致;
2.问题:cannot create __weak reference in file using manual reference counting

__cpt_weak UIPinchGestureRecognizer *pinchGestureRecognizer;

阅读 4.9k
1 个回答

可以设置build setting -> Apple LLVM7.1 - Language - Objective C -> Weak References in Manual Retain Release YES

或者用__unsafe_unretained 代替__weak,但是如果用__unsafe_unretained请注意下面的问题。

__unsafe_unretained specifies a reference that does not keep the referenced object alive and is not set to nil when there are no strong references to the object. If the object it references is deallocated, the pointer is left dangling.

撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进