// iOS7 and below
		void HandlePerformAction (object sender, ABPeoplePickerPerformActionEventArgs e)
		{
			var peoplePicker = (ABPeoplePickerNavigationController)sender;

			ResultLabel.Text = PersonFormatter.GetPickedEmail (e.Person, e.Identifier);
			peoplePicker.DismissViewController (true, null);

			e.Continue = false;
		}
        // iOS7 and below
        void HandlePerformAction(object sender, ABPeoplePickerPerformActionEventArgs e)
        {
            var peoplePicker = (ABPeoplePickerNavigationController)sender;

            ResultLabel.Text = PersonFormatter.GetPickedEmail(e.Person, e.Identifier);
            peoplePicker.DismissViewController(true, null);

            e.Continue = false;
        }