gpt4 book ai didi

ios - 无法使用地址簿框架在地址簿中保存姓名和电子邮件

转载 作者:行者123 更新时间:2023-11-29 03:24:06 26 4
gpt4 key购买 nike

在我的应用程序中,我试图将姓名和联系电话保存到地址簿。

但是,在保存时(使用下面的代码),我收到错误:

/Users/mobility/Desktop/STAXApplication/STAXApplication/AccountsAndContactsViewController.m:739:61: Implicit conversion of Objective-C pointer type 'NSString *' to C pointer type 'CFTypeRef' (aka 'const void *') requires a bridged cast

我使用的代码是:

-(void)addRecord:(NSString *)name email:(NSString *)email number:(NSString *)number
{
NSString *Name = name;
NSString *Email = email;
NSString *Number = number;

ABRecordRef newPerson = ABPersonCreate();

ABRecordSetValue(newPerson, kABPersonFirstNameProperty, Name, NULL);
ABRecordSetValue(newPerson, kABPersonEmailProperty, Email, nil);

//ABRecordSetValue(newPerson, kABPersonLastNameProperty, @"agrawal", NULL);
//ABRecordSetValue(newPerson, kABPersonPhoneProperty, CFNu,NULL);

ABMutableMultiValueRef multiPhone = ABMultiValueCreateMutable(kABMultiStringPropertyType);

ABMultiValueAddValueAndLabel(multiPhone, Number, kABPersonPhoneMainLabel, NULL);

ABRecordSetValue(newPerson, kABPersonPhoneProperty, multiPhone,nil);

ABAddressBookAddRecord(_addressBook, newPerson, NULL);

BOOL saved = ABAddressBookSave(_addressBook, NULL);

if(saved == YES)
{
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Saved" message:@"the contact has been saved" delegate:self cancelButtonTitle:@"OK" otherButtonTitles:nil];
[alert show];
}

else
{
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@" Not Saved" message:@"Not saved" delegate:self cancelButtonTitle:@"OK" otherButtonTitles:nil];
[alert show];
}
}

NSString 和 const void* 之间存在一些转换冲突。如何进行这种转换?我也使用了UTF8String..但它不起作用..

最佳答案

您必须通过以下方式桥接 Actor

ABRecordSetValue(newPerson, kABPersonFirstNameProperty, (__bridge CFStringRef) Name, NULL);
ABRecordSetValue(newPerson, kABPersonEmailProperty, (__bridge CFStringRef) Email, nil);

关于ios - 无法使用地址簿框架在地址簿中保存姓名和电子邮件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20705708/

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