Adding days to NSDate

后端 未结 9 1796
广开言路
广开言路 2021-01-02 04:34

I want add days to a date, I got many codes for this but none of them are working for me below shown is my code,please somebody help me to fix this issue

int         


        
9条回答
  •  独厮守ぢ
    2021-01-02 05:19

    NSDateComponents *offsetComponents = [[NSDateComponents alloc] autorelease];
    [offsetComponents setDay:1];
    
    newDate = [[[CalendarContainer sharedCalendarContainer] gregorian] dateByAddingComponents:offsetComponents toDate:currentlyDisplayedDate options:0];
    

提交回复
热议问题