zoukankan      html  css  js  c++  java
  • __NSCFConstantString && __NSPlaceholderDictionary

     -[__NSCFConstantString size]: unrecognized selector sent to instance 0x53ea70 

    该错误是在我将NSString类型的参数赋值给UIImage类型的时候报出的,查了一会才查出是这的问题。

    如果大家不是这个问题查一下是不是也是赋值类型错了。

    [__NSPlaceholderDictionary initWithObjects:forKeys:count:]: attempt to insert nil object from object

    Objective-C中,NSDictionary初始化的方法有很多种

    方法1:  [NSDictionary dictionaryWithObjectsAndKeys:<#(id), ...#>, nil]

    方法2:  NSDictionary *dic = @{@"key":value}

    方法2,如果你的value是为nil 必将引发崩溃:

    'NSInvalidArgumentException', reason: '*** -[__NSPlaceholderDictionary initWithObjects:forKeys:count:]

    意思就是说使用[__NSPlaceholderDictionary initWithObjects:forKeys:count:]这个初始化方法,发现keys count和objcects的个数不匹配了

    如何规避?

    在使用@{@”key”:value} 这种方式初始化的时候,一定要对value做是否为nil的判断,为nil就不要加入Dictionary

    #define  UNNULL_STRING(string)      (string && ![string isKindOfClass:[NSNull class]]) ? string : @""//非空字符串
    
    self.string = NONULL_STRING(string);

    使用标准的初始化方法:

    NSDictionary dictionaryWithObjectsAndKeys:value1,@"v1",value2,@"v2",value3,@"v3", nil];

    或其它的几个初始化方法进行初始化,这样如果value为nil就不会加入字典,使用 objectForKey:取出来的对象就会为nil对象,不会引发崩溃。

    关联:

    使用@[]方法初始化NSArray也有此坑,规避方法同字典一样

     

     参考:

    https://blog.csdn.net/yuanpeng1014/article/details/62215115

  • 相关阅读:
    JS通过组装key值访问json对象中的值
    js属性对象的hasOwnProperty方法
    ES6 去掉已经 new Date().format 方法
    Ajax不能接受php return值的原因
    CentOS最常用命令及快捷键整理
    js中for循环中需要调用异步方法,怎么确保执行的顺序?
    MYSQL 更新字段,向字段追加字符串
    java-学习2
    java-学习1
    JS----贪吃蛇游戏
  • 原文地址:https://www.cnblogs.com/developer-qin/p/5175792.html
Copyright © 2011-2022 走看看