You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I had a hard time trying to figure out how to make this library work with the new MemoryManagement in iOS, since none of the used "autorelease", "release", etc... is supported anymore. It looks like the whole app has to be without auto reference counting in order to work at all.
Would be nice to have the updated version. Im an Objective-C noob, so I would rather dont do this myself :)
Thanks for the help!
The text was updated successfully, but these errors were encountered:
I imagine you can go into your Target -> Build Phases -> Compile Sources and add this compiler flag to all the cocoa amy sources: -fno-objc-arc
This is what i had to do with the AddThis library which is also non-ARC. I haven't tried it yet though. I am going to go through an remove all the memory management and see how that works. I heard that there was a memory leak somewhere anyway so that might be a good idea.
I had a hard time trying to figure out how to make this library work with the new MemoryManagement in iOS, since none of the used "autorelease", "release", etc... is supported anymore. It looks like the whole app has to be without auto reference counting in order to work at all.
Would be nice to have the updated version. Im an Objective-C noob, so I would rather dont do this myself :)
Thanks for the help!
The text was updated successfully, but these errors were encountered: