The working code for me is something like:
NSNumber *n = @42.42;
CGFloat cgf = 0;
CFNumberRef cfn = CFBridgingRetain(n);
CFNumberGetValue(cfn, kCFNumberCGFloatType, &cgf);
CFRelease(cfn);
There could be also
CGFloat cgf = (CGFLOAT_IS_DOUBLE) ? [n doubleValue] : [n floatValue];
But this smells even uglier for me.
It seems to me there should be better API for doing such a common thing. Are there any?
This will get the correct result in any case:
NSNumber *n = @42.42;
CGFloat cgf = [n doubleValue];
because CGFloat
is either float
or double
.
NSNumber
does not have a CGFloatValue
method. You could define one
using the toll-free bridge to CFNumberRef
:
@interface NSNumber (MyCGFloatValue)
-(CGFloat)myCGFloatValue;
@end
@implementation NSNumber (MyCGFloatValue)
-(CGFloat)myCGFloatValue{
CGFloat result;
CFNumberGetValue((__bridge CFNumberRef)(self), kCFNumberCGFloatType, &result);
return result;
}
@end
or using the C11 feature "Generic selection", where the compiler chooses the appropriate
code depending on the type of CGFloat
:
@implementation NSNumber (MyCGFloatValue)
-(CGFloat)myCGFloatValue{
CGFloat result;
result = _Generic(result,
double: [self doubleValue],
float: [self floatValue]);
return result;
}
@end
And then
NSNumber *n = @42.24;
CGFloat f = [n myCGFloatValue];
but I doubt that it is worth the hassle.
Just always get the double value. If CGFloat is only a ‘float’ on your machine the double will be instantly truncated, so you don’t care.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With