-3

私は以下のような配列を1つ持っています

_combinedBirthdates(
"03/12/2013",
"03/12/2013",
"08/13/1990",
"12/09/1989",
"02/06",
"09/08",
"03/02/1990",
"08/22/1989",
"03/02",
"05/13",
"10/16",
"07/08",
"08/31/1990",
"04/14/1992",
"12/15/1905",
"08/14/1989",
"10/07/1987",
"07/25",
"07/17/1989",
"03/24/1987",
"07/28/1988",
"01/21/1990",
"10/13"

)

これはすべてNSStringです

これから、以下のような残りの日数を含む新しい配列を作成しようとしています

(特定の誕生日の残り日数) (現在の日付を上記の日付配列と比較し、残り日数を調べます) _newarray( "125", "100", "65", そして最後までこのように.. )

私はこれのために以下のコードを使用しています

unsigned int unitFlags =  NSDayCalendarUnit;
NSCalendar *currCalendar = [[NSCalendar alloc]
                            initWithCalendarIdentifier:NSGregorianCalendar];


NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init];

[dateFormatter setDateStyle:NSDateFormatterShortStyle];
NSLog(@" currCalendar%@",currCalendar);

NSMutableArray * _newarray = [[NSMutableArray alloc] init];
for (NSString * str in _combinedBirthdates){

    NSDate * toDate = [dateFormatter dateFromString:str];
    NSDateComponents *daysInfo = [currCalendar components:unitFlags fromDate:[NSDate date]  toDate:toDate  options:0];
    int days = [daysInfo day];
    [_newarray addObject:[NSString stringWithFormat:@"%d",days]];
}
NSLog(@" _newarray%@",_newarray);

これは、_newarrayを印刷したときに出力として得られるものです.plzを助けてくださいありがとう

_newlymadeArray(
"-1",
"-1",
"-8248",
"-8495",
"-4454",
"-4454",
"-8412",
"-8604",
"-4454",
"-4454",
"-4454",
"-4454",
"-8230",
"-7638",
"-39170",
"-8612",
"-9289",
"-4454",
"-8640",
"-9486",
"-8994",
"-8452",
"-4454",
"-2072",
"-888",
"-8315"
)
4

2 に答える 2

0

これを使ってみてください。これが役立つと思います。

NSDateFormatter *tempFormatter = [[NSDateFormatter alloc]init];
    [tempFormatter setDateFormat:@"dd/MM/yyyy"];

    NSString *str = [tempFormatter stringFromDate:@"yourStartDate"];
    NSDate *startdate = [tempFormatter dateFromString:str];

    str = [tempFormatter stringFromDate:@"yourEndDate"];
    NSDate *endDate = [tempFormatter dateFromString:str];

    int i = [startdate timeIntervalSince1970];
    int j = [toDate timeIntervalSince1970];

    double X = j-i;

    int days=(int)((double)X/(3600.0*24.00));
于 2013-03-13T05:45:52.557 に答える
0

以下のコードを使用して、2 つの日付を比較し、両方の日付を同じ形式で渡す

NSDateFormatter *dateformat = [[NSDateFormatter alloc]init];
[dateformat setDateFormat:@"dd/MM/yyyy"];
NSString *StrDate1 = [dateformat stringFromDate:[NSDate date]];
NSString *StrDate2 = [dateformat stringFromDate:date2];
NSDate *firstDate = [dateformat dateFromString:StrDate1];
NSDate *secondDate = [dateformat dateFromString:StrDate2];
NSTimeInterval lastDiff = [firstDate timeIntervalSinceNow];
NSTimeInterval todaysDiff = [secondDate timeIntervalSinceNow];
NSTimeInterval dateDiff = todaysDiff - lastDiff;
int day = dateDiff/(3600*24);

 // days are remaining

これをforループで使用すると、残りの日数がゲートされます

于 2013-03-13T05:47:00.087 に答える