Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
477 views
in Technique[技术] by (71.8m points)

xamarin.ios - How do you add contacts to the iPhone Address book with monotouch?

I need to be able to access the address book in monotouch and add/modify/delete from there within my project. How would I do that?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

Use ABAddressBook. Here's an example of adding a new contact with a name, address and phone

        ABAddressBook ab = new ABAddressBook();
        ABPerson p = new ABPerson();

        p.FirstName = fname;
        p.LastName = lname;

        ABMutableMultiValue<string> phones = new ABMutableStringMultiValue();
        phones.Add(phone, ABPersonPhoneLabel.Mobile);

        p.SetPhones(phones);

        ABMutableDictionaryMultiValue addresses = new ABMutableDictionaryMultiValue();
        NSMutableDictionary a = new NSMutableDictionary();

        a.Add(new NSString(ABPersonAddressKey.City), new NSString(city));
        a.Add(new NSString(ABPersonAddressKey.State), new NSString(state));
        a.Add(new NSString(ABPersonAddressKey.Zip), new NSString(zip));
        a.Add(new NSString(ABPersonAddressKey.Street), new NSString(addr1));

        addresses.Add(a, new NSString("Home"));
        p.SetAddresses(addresses);

        ab.Add(p);
        ab.Save();

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...