UII necesita copiar, controlador de auto o self.view, he intentado:Clon o Copiar UIViewController o UIView
UIView* viewOfSelf =[self.view copy];
UIViewController* controller = [self copy];
UIView* viewOfSelf =[self.view mutableCopy];
UIViewController* controller = [self mutableCopy];
El error es:
-[UIViewController mutableCopyWithZone:]: unrecognized selector sent to instance 0xb803490
-[UIView copyWithZone:]: unrecognized selector sent to instance 0x6e0acb0
¿Cuál es la clase de 'self'? 'MyViewController'? Creo que no hay una copia mutable de 'UIView' y' UIViewController' – Raptor