ABPeoplePickerNavigationController _contactController;
public override bool FinishedLaunching (UIApplication app, NSDictionary options)
{
window = new UIWindow (UIScreen.MainScreen.Bounds);
_contactController = new ABPeoplePickerNavigationController();
//viewController = new HomeScreen ();
//navController = new UINavigationController (_contactController);
window.RootViewController = _contactController;
window.MakeKeyAndVisible ();
return true;
}
so now when the app opens the contact list is displayed. I want to put a different functionality to the rightnavigationbar Button instead of the cancel? How do i do this? how to get access to this button?