最佳答案
在 Obj-C 中,我用来将无符号整数 n 转换为十六进制字符串
NSString *st = [NSString stringWithFormat:@"%2X", n];
我花了很长时间试着把它翻译成斯威夫特语,但是没有成功。