美文网首页
2018-11-15

2018-11-15

作者: iOS打怪升级 | 来源:发表于2018-11-15 16:21 被阅读24次

    数据库里面的对象:


    image.png

    ..........

    手动copy 后的


    image.png
    @implementation Goods_BoughtModel
    - (BOOL)isInvalid{
        NSInteger temp1 = _status;
        DDLogDebug(@"temp1 =%ld",temp1);
        NSInteger temp2 = self.status;
        DDLogDebug(@"temp2 =%ld",temp2);
        if (self.status == 0) {
            return YES;
        }
        return NO;
    }
    
    ***输出**
    temp1 = 0, 其实_status =nil
    temp2 = 3
    

    相关文章

      网友评论

          本文标题:2018-11-15

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