Best Practice bei der Implementierung von copyWithZone:

Ich versuche ein paar Dinge in meinem Kopf über die Implementierung zu klären copyWithZone:, kann jemand Folgendes kommentieren ... // 001: Crime is a subclass of NSObject. - (id)copyWithZone:(NSZone *)zone { Crime *newCrime = [[[self class] allocWithZone:zone] init]; if(newCrime) { [newCrime...