swift中的print

一、自定义print

      1.当前路径(String):let filePath = #file

      2.当前函数(String):let funcName = #function

      3.当前行号(Int):let lineNum = #line

      4.当前列号(Int):let columnNum = #column

      5.xf_print():

        func xf_print(message : T, file : String = #file, funcName : String = #function, line : Int =                          #line, column : Int = #column) {

            let file = (file as NSString).lastPathComponent

            print("\(file) : [\(funcName)] (\(line)行\(column)列) - \(message)")

        }

       此处应作为全局函数,供外界使用。

二、去掉Xcode中多余的打印

      1.Product->Scheme->Edit Scheme(或者Command + shift + <);

      2.Run->Arguments->Environment Variable;

      3.点击“+”,Name栏输入OS_ACTIVITY_MODE,Value栏输入disable

注:以上仅为自己学习随笔,如有错误欢迎指正!转载请注明出处,谢谢!。

转载于:https://my.oschina.net/u/2364947/blog/802581

你可能感兴趣的:(swift中的print)