복사 구현 시 모범 사례구역 포함: 구현과 관련하여 머릿속에서 몇 가지 사항을 정리하려고 합니다.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 setLocationName:[self ..