私はこのコードでdoubleから1を減算しようとしています:
-(NSMutableArray *)getMoreTwitterDataWithMaxID:(double)maxID {
double newestID = (maxID - 1);
NSLog(@"newest ID is %f and maxID is %f", newestID, maxID);
// other code
}
コンソールはこれを吐き出している:
2012-05-15 11:21:14.693 nearYou[2570:3a03] newest ID is 202429657738522624.000000 and maxID is 202429657738522624.000000
なぜ減算されないのかわかりません。。。
どんな助けでも大歓迎です!