jeevanantham
jeevanantham

Reputation:

ABPersonViewController+delete

Can anyone help me enable a delete button in ABPersonViewController?

Upvotes: 3

Views: 1718

Answers (2)

Marco
Marco

Reputation: 6692

Take a look at ABPersonViewController+Delete category which does not use any private methods:

https://github.com/shrtlist/ABDelete

Upvotes: 2

sgosha
sgosha

Reputation:

For me this code works:

ABPersonViewController *pvc = [[ABPersonViewController alloc] init];
[pvc setPersonViewDelegate:self];
[pvc setAllowsEditing:YES];
[pvc setAllowsDeletion:YES];
[pvc setAllowsActions:YES];

Upvotes: 0

Related Questions