I have a NSString with hex string like \"68656C6C6F\" which means \"hello\".
Now I want to convert the hex string into another NSString object which shows \"hello\"
+(NSString*)intToHexString:(NSInteger)value { return [[NSString alloc] initWithFormat:@"%lX", value]; }