Until iOS 7 I was able to display a ABPersonViewController with the related contact info and by tapping on the phone cell I was able to make a phone call. In iOS 8.3 that I am testing now, this does not work. However tapping on the email cell opens the mail app, tapping on the website cell opens safari and tapping on the address cell opens maps as expected. This is the code I am using to create an instance of ABPersonViewController:
personViewController = new ABPersonViewController ();
personViewController.AllowsEditing = true;
personViewController.AllowsActions = true;
personViewController.Delegate = new PersonViewControllerDelegate ();
personViewController.DisplayedPerson = person;
What should I do to enable phone calling from within the ABPersonViewController in iOS 8 and 9?