Using the Evernote API, I have an object which has an NSUInteger property called hash
. For the specific object I'm looking at, this is equal to:
<f5b5444b 33e740b7 f9d49a3b ddb6a39c>
I want to convert this into an NSString. Doing this:
[NSString stringWithFormat:@"%d", noteResource.hash]
Gives me this:
530049088
How could I correctly convert the hash value to an NSString?