copyWithZone 구현시 모범 사례 : 나는 구현 copyWithZone:에 대해 내 머릿속에서 몇 가지를 정리하려고 노력하고 있으며 , 누구든지 다음에 대해 의견을 말할 수 있습니다 ... // 001: Crime is a subclass of NSObject. - (id)copyWithZone:(NSZone *)zone { Crime *newCrime = [[[self class] allocWithZone:zone] init]; if(newCrime) { [newCrime setMonth:[self month]]; [newCrime setCategory:[self category]]; [newCrime setCoordinate:[self coordinate]]; [newCrime setLocat..