Close to being able to compile my Unity iOS project, but AdMob is giving me some problems. Running Xcode 6.1.1 and have the latest AdMob SDK, have all the build settings correct as far as I know and I'm getting the following three errors:
.../AdMob Test Build/Libraries/AdMob/Plugins/iOS/GADUObjectCache.m:25:16: 'release' is unavailable: not available in automatic reference counting mode
.../AdMob Test/AdMob Test Build/Libraries/AdMob/Plugins/iOS/GADUObjectCache.m:25:16: ARC forbids explicit message send of 'release'
...AdMob Test/AdMob Test Build/Libraries/AdMob/Plugins/iOS/GADUObjectCache.m:26:10: ARC forbids explicit message send of 'dealloc'
All three of these errors link me to these two lines of code:
[_references release];
[super dealloc];
I'm not an iOS Xcode developer and don't have any idea what to do to resolve this. Tips?
↧