找不到id类型的对象

时间:2016-02-12 09:00:43

标签: objective-c snapchat

我想要自己创建SnapchatHax,当我想要构建应用程序时,我有一个错误:

Severity    Code    Description Project File    Line    Suppression State
Error       property 'timeIntervalSince1970' not found on object of type 'id'   SnapchatHax (SnapchatHax\SnapchatHax)   C:\re\SnapchatHax-master\SnapchatHax\Snapchat\Internal\SCAPIRequest.m   14  

这是包含错误的代码:

//  SCAPIRequest.m
//  SnapchatHax
//
//  Created by Alex Nichol on 12/17/13.
//  Copyright (c) 2013 Alex Nichol. All rights reserved.
//

#import "SCAPIRequest.h"

@implementation SCAPIRequest

+ (NSString *)timestampString {\
    NSTimeInterval time = [NSDate date].timeIntervalSince1970;
    return [NSString stringWithFormat:@"%llu", (unsigned long long)round(time * 1000.0)];
}

谢谢大家

1 个答案:

答案 0 :(得分:0)

原因是

[NSDate date] 

返回一个NSDate类型的对象,你直接从它访问了timeIntervalSince1970,它是不同类型的。 使用

NSTimeInterval value = ((NStimeInterval*)[anArray objectAtIndex:0]).aVariable;

希望你的问题能得到解决

由于