码迷,mamicode.com
首页 > 编程语言 > 详细

swift常用代码片段

时间:2016-08-31 18:57:18      阅读:265      评论:0      收藏:0      [点我收藏+]

标签:

个人在写项目中常常用到的一些代码片段,会不断更新

 

// 获取屏幕宽度

func deviceWidth() -> (CGFloat) {

    let width = UIScreen.mainScreen().bounds.size.width

    return width

}

 

// 获取屏幕高度

func deviceHeight() -> (CGFloat) {

    let height = UIScreen.mainScreen().bounds.size.height

    return height

}

// viewController添加到另一个viewController

 func addChildVC(viewController: UIViewController) {

        self.addChildViewController(viewController)

        self.view.addSubview(viewController.view)

        viewController.didMoveToParentViewController(self)

 }

// viewController从另一个viewController移除

 func removeChildVC(viewController: UIViewController){

        viewController.view.removeFromSuperview()

        viewController.willMoveToParentViewController(nil)

        viewController.removeFromParentViewController()

  }

 

// block常用的弱指针

weak var weakSelf = self

guard let _weakSelf = weakSelf else{return}

 

// 获取文字的size 

extension String{

    func qb_stringSize(font: UIFont, maxWidth: CGFloat, maxHeight: CGFloat) -> CGSize{

        let arrt: Dictionary<String, UIFont> = [NSFontAttributeName: font]

        let maxSize: CGSize = CGSize(width: maxWidth, height: maxHeight)

        let options: NSStringDrawingOptions = [.TruncatesLastVisibleLine,.UsesLineFragmentOrigin,.UsesFontLeading]

        return self.boundingRectWithSize(maxSize, options: options, attributes: arrt, context: nil).size

    }

    func qb_stringSizeWithFont(font: UIFont) -> CGSize{

        return qb_stringSize(font, maxWidth: 0, maxHeight: 0)

    }

}

swift常用代码片段

标签:

原文地址:http://www.cnblogs.com/PLA-Artillery/p/5826975.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!