kABPersonRelatedNamesProperty

发布于 2024-09-09 05:27:08 字数 126 浏览 1 评论 0原文

我发现苹果文档很丰富,但我也找到了缺乏解释或示例的代码语法指南。

是否有关于一般地址簿编码的参考书/文档,以及对于我的具体情况,ABPeoplePickerNavigationController 类中的相关名称属性可用?

I find the Apple documentation extensive but I also find guidance on the syntax for code lacking in explanation or examples.

Is there any reference books/documents on coding the address book in general and for my specifics the Related Name Property in the ABPeoplePickerNavigationController Class available?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

岁月如刀 2024-09-16 05:27:08

仅供搜索相同术语并寻找简单示例的人们参考:

ABMultiValueRef relatedNames = ABRecordCopyValue(person, kABPersonRelatedNamesProperty);
NSMutableArray *relatedNameList = [[[NSMutableArray alloc] init] autorelease];

for(CFIndex j = 0; j < ABMultiValueGetCount(relatedNames); j++) 
{
    NSString *relatedNameLabel = [(NSString*)ABMultiValueCopyLabelAtIndex(relatedNames, j) autorelease];
    if (relatedNameLabel == nil) 
    {
        relatedNameLabel = @"";
    }
    NSString *relatedNameString = [(NSString*)ABMultiValueCopyValueAtIndex(relatedNames, j) autorelease];
    if (relatedNameString == nil) 
    {
        relatedNameString = @"";
    }
    NSArray *relatedNameArray = [NSArray arrayWithObjects: relatedNameLabel, relatedNameString, nil];
    [relatedNameList addObject:relatedNameArray];
}

Just for information to people who is searching the same term and looking for simple example:

ABMultiValueRef relatedNames = ABRecordCopyValue(person, kABPersonRelatedNamesProperty);
NSMutableArray *relatedNameList = [[[NSMutableArray alloc] init] autorelease];

for(CFIndex j = 0; j < ABMultiValueGetCount(relatedNames); j++) 
{
    NSString *relatedNameLabel = [(NSString*)ABMultiValueCopyLabelAtIndex(relatedNames, j) autorelease];
    if (relatedNameLabel == nil) 
    {
        relatedNameLabel = @"";
    }
    NSString *relatedNameString = [(NSString*)ABMultiValueCopyValueAtIndex(relatedNames, j) autorelease];
    if (relatedNameString == nil) 
    {
        relatedNameString = @"";
    }
    NSArray *relatedNameArray = [NSArray arrayWithObjects: relatedNameLabel, relatedNameString, nil];
    [relatedNameList addObject:relatedNameArray];
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文