开发者社区> 问答> 正文

Multiple methods named 'integerValue' found with mismatched

    #import "NSNull+NullCast.h"

@implementation NSNull (NullCast)

- (float)floatValue
{

    return 0.0;

}

- (double)doubleValue
{
    return 0.0;
}

- (int)intValue
{

    return 0;

}  

- (int)integerValue
{
    return 0;
}

在iPhone5s-ios8.1报错如下:

Multiple methods named 'integerValue' found with mismatched result, parameter type or attributes
可是奇怪的是iPhone5-ios8.1却顺利编译通过。

一样的操作系统,难道机型不一样也不行?看报错是ARC报错

展开
收起
a123456678 2016-07-28 10:46:49 3191 0
1 条回答
写回答
取消 提交回答
  • 能理解你的意思,不过还是把integerValue这个方法去掉吧,不太安全。虽然开放的接口里没有这个方法,但这个类有可能实现了这个私有方法。所以编译的时候还是可能会出问题。现在看貌似intValue暂时没有问题。

    2019-07-17 20:01:11
    赞同 展开评论 打赏
问答地址:
问答排行榜
最热
最新

相关电子书

更多
Why you should care about data 立即下载
Why you should care about data layout in the file system 立即下载
Froma single droplet toafull b 立即下载