Do we have an update of ShareKit for iOS 5 which supports automatic reference counting?
I am trying to migrate my app which was initially developed in iOS 4.3 to iOS 5. All the third party code is being migrated with开发者_如何学Python Xcode's refactor tool. But it doesn't convert the code and shows a lot of errors with the third party files like ShareKit and ASIHTTPRequest. Can anyone help out?
When you convert just unstick the third-party files that are causing you problem. Because ARC is still reference counting you are able to mix ARC and non-ARC files in the same project.
精彩评论