0

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 )?

1 Answer 1

0

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.

Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.