希望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