为了账号安全,请及时绑定邮箱和手机立即绑定

模拟器怎么安装sina微博等应用?

class KoreanViewController: UIViewController {

    

    override func viewDidLoad() {

        super.viewDidLoad()

        // Do any additional setup after loading the view, typically from a nib.

    }

    

    override func didReceiveMemoryWarning() {

        super.didReceiveMemoryWarning()

        // Dispose of any resources that can be recreated.

    }

    

    @IBAction func shareTapped(sender: UIButton) {

        doShare(sender.restorationIdentifier!)

        println(sender.restorationIdentifier!)

    }

        

    @IBOutlet weak var img: UIImageView!

    

    private func doShare(falg: String){

        var controller: SLComposeViewController? = nil

        switch falg{

        case "sinaweibo":

            controller = SLComposeViewController(forServiceType: SLServiceTypeSinaWeibo)

        case "twitter":

            controller = SLComposeViewController(forServiceType: SLServiceTypeTwitter)

        case "facebook":

            controller = SLComposeViewController(forServiceType: SLServiceTypeFacebook)

            default: break

        }

        controller!.setInitialText("一起来玩Beauty Gallery App吧!")

        controller!.addImage(img.image)

        self.presentViewController(controller!, animated: true) { () -> Void in

            println("分享成功")

        }


    }

}


正在回答

2 回答

可以自己写一个,用新浪的数据,效果一样

0 回复 有任何疑惑可以回复我~

模拟器没法安

0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消
使用Swift开发iOS8 App实战
  • 参与学习       62613    人
  • 解答问题       541    个

通过苹果最新Swift语言开发iOSApp,从零开始学习iOS的开发

进入课程

模拟器怎么安装sina微博等应用?

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信