我想制作自己的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)];
}
感谢大家