__weak UIImage *image and UIImage *__weak image
在 iOS和有什么区别?ARC 是否需要 __weak ?
我在可能的示例中看到了这种代码模式,其中 UIImage 是在 iOS 中以编程方式创建的,但是这种模式仍然必要吗?广告还把它放在 UIImage 之前和指针之后有什么区别 *
为了记录,我不是在问强与弱,我问的是在我提到的情况下是否需要 __weak,如果需要,它与 __weak 的位置有什么关系。举个例子
UIGraphicsBeginImageContextWithOptions(label.bounds.size, YES, [[UIScreen mainScreen] scale]);
[label.layer renderInContext:UIGraphicsGetCurrentContext()];
UIImage *__weak icon = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();