ExtendNSLog 1.0.1

ExtendNSLog 1.0.1

测试测试过
语言语言 Obj-CObjective C
许可证 MIT
发布最后发布2014年12月

未注册维护。



  • 作者
  • 周卓谦

希望NSLog能像这样

(ClassName MethodName) (SourceFileName:LineNumber) NSLog output

安装

第一步

在您的Podfile中添加此行

pod 'ExtendNSLog', :git => 'https://github.com/ben46/ExtendNSLog.git'

第二步

在您的终端中运行以下命令

pod install

第三步

现在将ExtendNSLogFunctionality.h包含文件添加到 Prefix.pch 前缀头文件中,在 #ifdef OBJC 部分。

#ifdef __OBJC__
  #import <UIKit/UIKit.h>
  #import <Foundation/Foundation.h>
  #import "ExtendNSLogFunctionality.h"
#endif

自定义日志示例

int result = 20;
NSLog(@"Value of result : %d", result);

您应该看到类似的内容

(­[AppDelegate application:didFinishLaunchingWithOptions:]) (AppDelegate.m:21) Value of result : 20