I have recently purchased an app and while trying to make edits in Xcode, I am getting a compiler error with the error saying:
cannot create __weak static in file using manual reference
I have recently purchased an app and while trying to make edits in Xcode, I am getting a compiler error with the error saying:
cannot create __weak static in file using manual reference
This means that you are not using ARC in that file and so you cannot use weak
, strong
and so on. Therefore you have to remove the keyword __weak
.