我試圖實現一個名爲OCCCalendarView的gitHub項目,但它看起來是項目寫在弧前,我想知道如何重構此方法,以便我可以使用它與iOS 7 & 8.如何獲得擺脫保留&版本?如何使用保留版本重構getter和setter方法?
- (void)setStartDate:(NSDate *)sDate
{
if(startDate)
{
[startDate = release];
startDate = nil;
}
startDate = [sDate retain];
[calView setStartDate:startDate];
}
您不需要重構。按原樣使用該文件,並將該.m文件標記爲不使用ARC。 – rmaddy 2014-09-26 16:08:39