NSDate *today = [[NSDate alloc] init];
NSCalendar *calender = [[NSCalendar alloc] initWithCalendarIdentifier:NSGregorianCalendar];
NSDateComponents *onset = [[NSDateComponents alloc] init];
[onset setMonth:monthsStart];
NSDate *fromDate = [gregorian dateByAddingComponents:onset toDate:today options:0];
[onset setMonth:monthsEnd];
NSDate *toDate = [gregorian dateByAddingComponents:onset toDate:today options:0];
それは次のように言います:-
- メソッドは、保持カウントが +1 の Objective-C オブジェクトを返します
- オブジェクトがリークしました: 割り当てられて格納されたオブジェクト
today
は、この実行パスで後で参照されず、保持カウントが +1 です