iOS 가 어떤 날 짜 를 가 져 온 후 n 개 월 의 날짜

1558 단어 ios날짜.
1.시간 을 주 고 숫자 를 주 며 정 수 는 앞으로 n 개 월 이 고 음 수 는 n 개 월 전이 다.

-(NSDate *)getPriousorLaterDateFromDate:(NSDate *)date withMonth:(NSInteger)month
{
  NSDateComponents *comps = [[NSDateComponents alloc] init];
  [comps setMonth:month];
  NSCalendar *calender = [[NSCalendar alloc] initWithCalendarIdentifier:NSCalendarIdentifierGregorian];
  NSDate *mDate = [calender dateByAddingComponents:comps toDate:date options:0];
  return mDate;
}
2.당신 이 증가 하거나 감소 해 야 하 는 년,월,일 을 설정 하면 새로운 날 짜 를 얻 을 수 있 습 니 다.상기 한 것 은 my date 날 짜 를 얻 기 한 달 전의 날 짜 를 표시 합 니 다.만약 에+1 이 되면 한 달 후의 날짜 이 므 로 이런 식 으로 계산 할 수 있 습 니 다.

- (NSDate *)getLaterDateFromDate:(NSDate *)date withYear:(NSInteger)year month:(NSInteger)month day:(NSInteger)day {
  NSCalendar *calendar = [[NSCalendar alloc] initWithCalendarIdentifier:NSCalendarIdentifierGregorian];
  NSDateComponents *comps = nil;
  comps = [calendar components:NSCalendarUnitYear | NSCalendarUnitMonth | NSCalendarUnitDay fromDate:date];
  NSDateComponents *adcomps = [[NSDateComponents alloc] init];
  [adcomps setYear:year];
  [adcomps setMonth:month];
  [adcomps setDay:day];
  NSDate *newdate = [calendar dateByAddingComponents:adcomps toDate:date options:0];
  return newdate;
}
총결산
위 에서 말씀 드 린 것 은 편집장 님 께 서 소개 해 주신 iOS 가 특정한 날 짜 를 얻 은 후 n 개 월 의 날짜 입 니 다.여러분 께 도움 이 되 셨 으 면 좋 겠 습 니 다.궁금 한 점 이 있 으 시 면 메 시 지 를 남 겨 주세요.편집장 님 께 서 바로 답 해 드 리 겠 습 니 다.여기 서도 저희 사이트 에 대한 여러분 의 지지 에 감 사 드 립 니 다!

좋은 웹페이지 즐겨찾기