Xcode 7.3 cannot create __weak reference in file using manual reference counting

后端 未结 7 2001
清酒与你
清酒与你 2020-12-12 12:50

After updating to Xcode 7.3, it throws the error Cannot create __weak reference in file using manual reference counting in pod files. Has anyone solved this iss

7条回答
  •  猫巷女王i
    2020-12-12 13:21

    Or change __weak to __unsafeunretained. This will solve the problem in tradition. Since MRC (before xCode 4 --) __weak was not in iOS.

提交回复
热议问题