Tried to convert an iOS app using AdWhirl to ARC (Automatic Reference Counting). There are several autorelease calls within AdWhirlView.m that ARC forbids.
When I refactored all my paid apps (that didn't have adwhirl) to ARC, XCode just removed my retains, releases, and autoreleases for me, but something about the way the code in AdWhirlView.m is written has caused XCode to pause, noting "[rewriter] it is not safe to remove an unused 'autorelease' message; its receiver may be destroyed immediately."
Is anybody able to rewrite AdWhirlView.m to work correctly with ARC? Or will I be forced to avoid combining the two? =/
Thanks in advance!