FrozenHeart
FrozenHeart

Reputation: 20756

Can I create or use the view controller like SLComposeViewController for the social networks other than Twitter and Facebook

Can I create or use the view controller like SLComposeViewController for the social networks other than Twitter and Facebook? I want to have the similar look for all of the social networks interactions. Is it possible? If yes, how can I do it?

Thanks in advance.

Upvotes: 0

Views: 427

Answers (2)

kas-kad
kas-kad

Reputation: 3764

In iOS 7 there is just four social services integrated with SLComposeViewController.

NSString *const SLServiceTypeFacebook; 
NSString *const SLServiceTypeTwitter; 
NSString *const SLServiceTypeSinaWeibo; 
NSString *const SLServiceTypeTencentWeibo;

If you want to share some data in vk.com, you should check this official VK SDK for iOS: https://github.com/VKCOM/vk-ios-sdk

It is pretty well documented. I hope you are one the right way now :)

Upvotes: 1

AdamPro13
AdamPro13

Reputation: 7400

Look at the documentation. These are the following options:

Service Type Constants NSString *const SLServiceTypeFacebook; NSString *const SLServiceTypeTwitter; NSString *const SLServiceTypeSinaWeibo; NSString *const SLServiceTypeTencentWeibo;

Upvotes: 0

Related Questions