swift常用代码片段

Posted PLA-Artillery

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了swift常用代码片段相关的知识,希望对你有一定的参考价值。

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

 

// 获取屏幕宽度

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常用代码片段的主要内容,如果未能解决你的问题,请参考以下文章

如何将这个 Objective-C 代码片段写入 Swift?

如何使用 Swift 使用此代码片段为 iOS 应用程序初始化 SDK?

常用python日期日志获取内容循环的代码片段

C#常用代码片段备忘

IOS开发-OC学习-常用功能代码片段整理

# Java 常用代码片段