gpt4 book ai didi

iphone - 在 ABPersonViewController 中处理点击事件

转载 作者:塔克拉玛干 更新时间:2023-11-02 20:22:13 25 4
gpt4 key购买 nike

我正在实现

- (BOOL)personViewController:(ABPersonViewController *)personViewController shouldPerformDefaultActionForPerson:(ABRecordRef)person property:(ABPropertyID)property identifier:(ABMultiValueIdentifier)identifier

委托(delegate)我的自定义类,它是 ABPersonViewController 的子类。委托(delegate)方法捕获 ABPersonViewController 子类中的点击事件。但是我怎么知道确切地单击了哪个字段。例如。如果我单击家庭住址字段,我将如何在委托(delegate)方法中处理这种情况。

最佳答案

- (BOOL)personViewController:(ABPersonViewController *)personViewController shouldPerformDefaultActionForPerson:(ABRecordRef)person property:(ABPropertyID)property identifier:(ABMultiValueIdentifier)identifier{
if(property == kABPersonAddressProperty){
ABMutableMultiValueRef multi = ABRecordCopyValue(person, property);
CFStringRef address = ABMultiValueCopyValueAtIndex(multi, identifier);
NSLog(@"Address %@", (NSString *)address);
// Do your tasks here
CFRelease(address);
}
return YES;
}

就像 kABPersonAddressProperty 一样,您可以检查所有其他属性,如电话号码、电子邮件、url 等。

关于iphone - 在 ABPersonViewController 中处理点击事件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10394637/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com