本文介绍了从vCard读取/解析数据的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

iOS SDK中是否有可用于读取/解析vCard格式数据的框架/库?
我在NSString中以vcard格式接收数据,我必须解析它。
谷歌搜索了很多,但还没找到解决方案。

Is there any framework/library available in iOS SDK to read/parse data in vCard format?I am receiving data in a vcard format in a NSString and I have to parse it.Googled a lot, but couldn't find solution yet.

BEGIN:VCARD
VERSION:2.1
N:LastName;FirstName;MiddleName;Prefix;Sufix
ADR;TYPE=HOME: postbox;street2;street1;city;state;zip;country
BDAY:2010-08-19
END:VCARD


推荐答案

我确实找到了一些解决方案为你...

I did found some solutions for you...

查看以下链接...

1) 想要现成的示例代码==>

1) Want ready made sample code==>Click here

2)写入Vcard ==>

2) Writing to Vcard==>Click here

Code Relevent to you:

Code Relevent to you:

ABAddressBookRef addressBook = ABAddressBookCreate(); // create address book record
ABRecordRef person = ABPersonCreate(); // create a person

NSString *phone = @"0123456789"; // the phone number to add

//Phone number is a list of phone number, so create a multivalue
ABMutableMultiValueRef phoneNumberMultiValue = ABMultiValueCreateMutable(kABPersonPhoneProperty);
ABMultiValueAddValueAndLabel(phoneNumberMultiValue ,phone,kABPersonPhoneMobileLabel, NULL);

ABRecordSetValue(person, kABPersonFirstNameProperty, @"FirstName" , nil); // first name of the new person
ABRecordSetValue(person, kABPersonLastNameProperty, @"LastName", nil); // his last name
ABRecordSetValue(person, kABPersonPhoneProperty, phoneNumberMultiValue, &anError); // set the phone number property
ABAddressBookAddRecord(addressBook, person, nil); //add the new person to the record

ABRecordRef group = ABGroupCreate(); //create a group
ABRecordSetValue(group, kABGroupNameProperty,@"My Group", &error); // set group's name
ABGroupAddMember(group, person, &error); // add the person to the group
ABAddressBookAddRecord(addressBook, group, &error); // add the group

ABAddressBookSave(addressBook, nil); //save the record

CFRelease(person); // relase the ABRecordRef  variable

3)导入vCard示例代码== >

3) Importing vCard sample code==>Click here

4 )用于创建自定义解析器==>

4) For creating custom parser ==> Click here

这篇关于从vCard读取/解析数据的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-23 13:43