Reputation: 2119
How can I get a an array of parent ABGroups
for an ABPerson
in MonoTouch?
Upvotes: 1
Views: 359
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
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