ios学习:swift中实现分享到微博、facebook,twitter等

在swift中打开分享功能原来是如此的简单。

1、首先需要 

import Social


2、在分享按钮事件下面

  var controller:SLComposeViewController = SLComposeViewController(forServiceType: SLServiceTypeSinaWeibo)
  controller.setInitialText("一起来swift吧!")
  controller.addImage(UIImage(named: "app720_12801"))
  self.presentViewController(controller, animated: true, completion: nil)

这样就打开了分享到新浪微博窗口


swift 中自带的有4个值,分别为 

SLServiceTypeTwitter

SLServiceTypeFacebook

SLServiceTypeSinaWeibo

SLServiceTypeTencentWeibo

一看就明白了,但是要分享到微信应该还要看微信的api才行。

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。