Pregunta

I have the following line of code

 CGAffineTransform rotate = CGAffineTransformMakeRotation( 1.0 / 240.0 * 3.14 );

Is it possible to change rotate variable on the fly and initialise it with CGAffineTransformMakeRotation( 1.0 / 180.0 * 10 )?

¿Fue útil?

Solución

This answer may help you, it did me.

Quote:

You can do this in the debug console. Say you have NSString* myVar. In the console, after (gdb), type set myVar = @"My new string". If you are using (lldb), then use the equivalent expression expr myVar = @"My new string" instead.

Licenciado bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top