Im using the GameCenterManger from Apple’s GKTapper demo. I decided I want to convert my project to arc, but I keep getting an error saying “GameCenterManager.h:67:43: The current deployment target does not support automated __weak references”. Any help would be appreciated, thanks!
https://developer.apple.com/library/ios/#samplecode/GKTapper/Introduction/Intro.html
Im using the GameCenterManger from Apple’s GKTapper demo. I decided I want to convert
Share
“Weak” not support iOS 4.0 target.
1st way…
if your project is newer. change target to iOS 5.0 or later.
2nd way…
You should support iOS 4.0.
You can use assign keyword.
But assign do not support setting to nil.