objective-c - iOS9.3 __weak reference
怪我咯
怪我咯 2017-05-02 09:22:06
0
1
487

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

__cpt_weak UIPinchGestureRecognizer *pinchGestureRecognizer;

怪我咯
怪我咯

走同样的路,发现不同的人生

reply all(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.

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template