Forrest
Forrest

Reputation: 127743

ShareKit support iOS 5 now?

ShareKit (https://github.com/ShareKit/ShareKit ) can support iOS 5 now ?

For such similar back-compatibility issue, what are the essence for developers to think about? Need think about ARC? or do they need to think about using storyboard to replace xibs? Any good practices guidelines to handle such issues?

Thanks for any clues or comments to understand this problem.

Upvotes: 8

Views: 5846

Answers (2)

adedoy
adedoy

Reputation: 2273

If you try to build it in iOS 5, you will get a lot of warnings. Also you'll probably have some cancel issue in twitter but sharekit people are doing the fix immediately.

sharekit twitter cancel issue

Upvotes: 2

Andrew
Andrew

Reputation: 3892

Sharekit will work fine with storyboards. ARC will be your biggest problem. You will have to go through every class in Sharekit and tell it to ignore ARC (-fno-objc-arc - under build phases - although be warned your going to have to do this for like 60 classes).

I personally don't think its very difficult to integrate Facebook with their new, easier API. And Twitter is so easy in iOS 5. That being said, if you want more sharing services than those, or cannot figure out how to implement Facebook or Twitter, go with Sharekit and you should have no problems.

Upvotes: 3

Related Questions