iOS学习- 07 使用sketch做的图片做自定义按钮

来源:互联网 发布:双色球免费预测软件 编辑:程序博客网 时间:2024/05/03 21:58

1.)自定义按钮分享


2.)先手动增加一个ViewController类 KoreanViewController ,在storyboard 中View class 选择该类型 建军立联接.

联线增加 @IBOutlet ,@IBAction

Code:

//
//  KoreanViewController.swift
//  BeautyGallery
//
//  Created by Ricky Choi on 16/5/31.
//  Copyright © 2016年 worm. All rights reserved.
//


import UIKit
import Social


class KoreanViewController: UIViewController {
    
    @IBOutlet weak var beautyImage: UIImageView!
    
    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 facebookTapped(sender: AnyObject) {
        var controller: SLComposeViewController = SLComposeViewController(forServiceType: SLServiceTypeFacebook)
        controller.setInitialText("HI man go get your girls http://www.worm.com")
        controller.addImage(beautyImage.image)
        self.presentViewController(controller, animated: true, completion: nil)
    }
    
    @IBAction func twitterTapped(sender: AnyObject) {
        var controller: SLComposeViewController = SLComposeViewController(forServiceType: SLServiceTypeTwitter)
        controller.setInitialText("HI man go get your girls http://www.worm.com")
        controller.addImage(beautyImage.image)
        self.presentViewController(controller, animated: true, completion: nil)
    }
    
    @IBAction func weiboTapped(sender: AnyObject) {
        var controller: SLComposeViewController = SLComposeViewController(forServiceType: SLServiceTypeSinaWeibo)
        controller.setInitialText("HI man go get your girls http://www.worm.com")
        controller.addImage(beautyImage.image)
        self.presentViewController(controller, animated: true, completion: nil)
    }
}

 

0 0