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

概述在swift中打开分享功能原来是如此的简单。 1、首先需要  import Social 2、在分享按钮事件下面 var controller:SLComposeViewController = SLComposeViewController(forServiceType: SLServiceTypeSinaWeibo) controller.setInitialText("一起来swif

在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才行。 总结

以上是内存溢出为你收集整理的ios学习:swift中实现分享到微博、facebook,twitter等全部内容,希望文章能够帮你解决ios学习:swift中实现分享到微博、facebook,twitter等所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1088628.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-27
下一篇 2022-05-27

发表评论

登录后才能评论

评论列表(0条)

保存