Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

ShareKit support iOS 5 now?

Tags:

ios5

sharekit

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.

like image 573
Forrest Avatar asked Oct 15 '11 15:10

Forrest


2 Answers

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.

like image 158
Andrew Avatar answered Jan 11 '23 04:01

Andrew


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

like image 22
adedoy Avatar answered Jan 11 '23 02:01

adedoy