私は自分の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)];
}
みんな、ありがとう