我确定我在ios7中看到了一个新的api调用,你将在其中输入给定的名称和姓氏,它会根据语言环境显示它应该如何显示,但我似乎无法看到即使经过数小时的搜索,也能再次找到电话。
答案 0 :(得分:0)
this您要找的是什么?
ABPersonCopyLocalizedPropertyName 返回人员属性的本地化名称
CFStringRef ABPersonCopyLocalizedPropertyName (
ABPropertyID property
);
参数:property - 要返回其本地化名称的person属性。
返回值:属性的本地化名称。
答案 1 :(得分:0)
Get a person record(ABRecordRef) from the address book, then use
NSString* name = (__bridge_transfer NSString*)ABRecordCopyCompositeName(person);
This will print out localized version of name similar to the iPhone contacts.
Thank you thewormsterror for your comment. It led me to right way.