vote up 0 vote down star

I am asking for an Value like this:

[self.layer valueForKeyPath:@"transform.rotation.z"]

bit I need to pass it to a method which takes a CGFloat as parameter. What's the casting trick here?

flag

58% accept rate

2 Answers

vote up 5 vote down check

Try

NSNumber* n = [self.layer valueForKeyPath:@"transform.rotation.z"];
CGFloat f = [n floatValue];
link|flag
vote up 0 vote down

If you wanted a more concise, one line way to do that, you can do:

CGFloat f = [[self.layer valueForKeyPath:@"transform.rotation.z"] floatValue];
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.