Is there a way to convert a CFStringRef which
represents a number in hexadecimal to an actual number?
Two ways:
1. Write you own, it can't be that hard.
2. (and this requires obj-c:)
NSScanner* scanner = [NSScanner scannerWithString:(NSString*)
myCFStringRef];
int value;
if ([scanner scanHexInt:&value])
DoSomethingWith(value);
Matt Gough
Softchaos Limited
_______________________________________________
Do not post admin requests to the list. They will be ignored.
Carbon-dev mailing list (email@hidden)
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/carbon-dev/email@hidden