美文网首页
CocoaDebug 用法

CocoaDebug 用法

作者: nick5683 | 来源:发表于2021-10-19 10:16 被阅读0次

官方网站地址:https://github.com/CocoaDebug/CocoaDebug

因为网络原因,建议访问 https://gitee.com/nick5683/CocoaDebug

pod'CocoaDebug', :git => 'https://gitee.com/nick5683/CocoaDebug', :configurations => ['Debug']
    //Step 1.

    #if DEBUG
        import CocoaDebug
    #endif

    //Step 2.
    #if DEBUG
        CocoaDebug.enable()
    #endif

    //Step 3.

    public func MYLog<T>(file: String = #file, function: String = #function, line: Int = #line, _ message: T, color: UIColor = .white) {
        #if DEBUG
        print(message)
        #endif
    }

相关文章

网友评论

      本文标题:CocoaDebug 用法

      本文链接:https://www.haomeiwen.com/subject/vbtaoltx.html