判斷通訊錄 姓 or 名在前

不同國家姓名可能姓在前或是名在前, 利用以下 method 判斷.

if(ABPersonGetSortOrdering() == kABPersonCompositeNameFormatFirstNameFirst)
{
    return [NSString stringWithFormat:@"%@ %@", self.firstName, self.lastName];
}
else
{
    return [NSString stringWithFormat:@"%@, %@", self.lastName, self.firstName];
}

參考 MKBlog

你可能感兴趣的:(判斷通訊錄 姓 or 名在前)