美文网首页
控制台--NSLog输出

控制台--NSLog输出

作者: Cy_Star | 来源:发表于2019-12-06 14:54 被阅读0次

一:对返回的Json数据输出进行转化成中文状态输出

操作如下:

 对Json数据里的字典类型进行拓展转化,创建一个NSDictionary类 Category类型文件。
 #import <Foundation/Foundation.h>
 @interface NSDictionary (Log)

 @end

  #import "NSDictionary+Log.h"

@implementation NSDictionary (Log)

- (NSString *)descriptionWithLocale:(nullable id)locale{
    
    NSString *logString;

    @try {
 //这里做一下处理判断,可以过滤一些输出造成莫名的闪退
        if (![locale isEqual:[NSNull alloc]]) { 
            logString=[[NSString alloc] initWithData:[NSJSONSerialization dataWithJSONObject:self options:NSJSONWritingPrettyPrinted error:nil] encoding:NSUTF8StringEncoding];
        }
    } @catch (NSException *exception) {

        NSString *reason = [NSString stringWithFormat:@"reason:%@",exception.reason];
        logString = [NSString stringWithFormat:@"转换失败:\n%@,\n转换终止,输出如下:\n%@",reason,self.description];

    } @finally {
      
    }

    return logString;

 }
 @end


  使用  //data :返回来的数据
  NSMutableDictionary *dictionary = [NSJSONSerialization JSONObjectWithData:data options:NSJSONReadingMutableContainers error:nil];
  NSLog(@"==data===%@",[dictionary descriptionWithLocale:dictionary[@"data"]]);

二:对输出进行定位监控

#ifdef DEBUG

//输出,定位到具体类,函数,代码行数
#define Log(format, ...)  fprintf(stderr,"%s:%d\t%s\n",[[[NSString stringWithUTF8String:__FILE__] lastPathComponent] UTF8String], __LINE__, [[NSString stringWithFormat:FORMAT, ##__VA_ARGS__] UTF8String]);

#else

#define Log(format, ...)  NSLog(format, ## __VA_ARGS__)

#endif

相关文章

  • 控制台--NSLog输出

    一:对返回的Json数据输出进行转化成中文状态输出 操作如下: 二:对输出进行定位监控

  • iOS 便捷的宏定义

    一、控制台自定义NSLog输出形式 效果 屏幕快照 2018-08-09 下午4.57.47.png 文章持续更新...

  • NSLog()函数

    1). 作用 : 是printf函数的增强版,向控制台输出信息 2). 语法 : NSLog(@"格式控制字符串...

  • ios NSLog 控制台 输出中文

    在开发中,我们调试接口时最多的就是用NSLog 或者是打断点来po 数据,然而NSLog 输出的数据中,中文是...

  • iOS NSLog输出特殊符号%

    项目当中NSLog想输出%,找到方案记录一下:输出 % : NSLog(@"%%");输出 \ :...

  • 《iOS调试专用》手机端日志控制台

    点击下载demo将项目中所有使用NSLog打印的日志,输出到手机端日志控制台查看,具体如下图所示:

  • 使用NSLog打印 控制台没有输出

    原因:一直使用自定义的宏打印数据,系统的NSLog禁用了,调试BUG需要打印时间把自定义的宏输出注释了,使用系统N...

  • NSLog控制台输出不完整

    查阅了下资料,printf可以打印全,用下面这个输出宏就可以了:

  • iOS Debug 和 Release 的区别和闪退处理

    前言 在开发过程中,我们经常需要用到NSLog输出一些信息,甚至有的开发过程,必须在控制台查看输出。但是程序带有太...

  • iOS开发中常用的宏

    /** 在Release版本禁止输出NSLog内容 因为NSLog的输出还是比较消耗系统资源的,而且输出的数据也可...

网友评论

      本文标题:控制台--NSLog输出

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