NSString to UInt64

Viewed 2542

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.

4 Answers
Related