Martin Wiboe
Martin Wiboe

Reputation: 2119

How to get the groups that a contact belongs to?

How can I get a an array of parent ABGroups for an ABPerson in MonoTouch?

Upvotes: 1

Views: 359

Answers (2)

poupou
poupou

Reputation: 43553

Sadly you cannot. The ABPersonCopyParentGroups API is only documented for OSX (web site and header files) and a bit of testing shows it is not available on iOS.

Upvotes: 0

Jason
Jason

Reputation: 89169

Presumably you do it the same way you do in Obj-C, using ABPersonCopyParentGroups.

See also: https://stackoverflow.com/questions/5973510/find-which-abpersons-group-abgroup-in-ios4

Upvotes: 1

Related Questions