我们需要使用用户生成的密码来做一些事情。
我们有密码包含 a 的情况ä
,但是当我们从中创建 aCFDictionaryRef
时,框架会将字符更改为\U00e4
。
const void *keys[] = { somObj};
const void *values[] = { (CFStringRef)[passwords objectAtIndex:i] };
CFDictionaryRef optionsDictionary = CFDictionaryCreate(NULL, keys, values, 1, NULL, NULL);
有没有办法在目录中\U00e4
替换为ä
?