如何在ios7中本地化族/给定的名称顺序和间距

时间:2014-01-03 01:32:34

标签: ios ios7 localization

我确定我在ios7中看到了一个新的api调用,你将在其中输入给定的名称和姓氏,它会根据语言环境显示它应该如何显示,但我似乎无法看到即使经过数小时的搜索,也能再次找到电话。

2 个答案:

答案 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.