我在我的项目中使用了 ABNewPersonViewControllerDelegate。它会弹出用于添加联系人的新视图。
-(IBAction)Click:(id)sender
{
ABNewPersonViewController *view = [[ABNewPersonViewController alloc] init];
view.newPersonViewDelegate = self;
UINavigationController *newNavigationController = [[UINavigationController alloc]
initWithRootViewController:view];
[self presentModalViewController:newNavigationController
animated:YES];
}
如何处理取消和完成按钮?任何示例代码将不胜感激。提前致谢