How do you convert from NSString to UInt64?
For example, something like this if a UInt64Value helper method existed:
NSString *value = @"1234567";
UInt64 convertedValue = [value UInt64Value];
I am trying to do this in an iOS project.
How do you convert from NSString to UInt64?
For example, something like this if a UInt64Value helper method existed:
NSString *value = @"1234567";
UInt64 convertedValue = [value UInt64Value];
I am trying to do this in an iOS project.