美文网首页
float 型数据出现 nan 的问题

float 型数据出现 nan 的问题

作者: 恶棍01 | 来源:发表于2017-12-04 09:46 被阅读0次

“这种错误是在float经过函数运行出了不是数字的值,nan的意思就是not a number。

主要常见原因:

1.除以0

2.sizeWithFont的字符串为nil

3.数学函数不正确运算

解决方法除了排除根源所在之外,用函数isnan()也是不错的选择(至少在没有彻底解决以前)

如下

float _x = NAN;

if (!isnan(_x)) {

cell.imgView.frame = CGRectMake(_x, 8, 10, 12);

}

相关文章

网友评论

      本文标题:float 型数据出现 nan 的问题

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