Details
-
Type: Bug
-
Status: Resolved
-
Priority: Major
-
Resolution: Fixed
-
Affects Version/s: BridgeIt 1.0.4
-
Fix Version/s: BridgeIt 1.0.5
-
Component/s: Containers
-
Labels:None
-
Environment:iOS 8
Description
The method
- (BOOL)peoplePickerNavigationController:(ABPeoplePickerNavigationController *)peoplePicker shouldContinueAfterSelectingPerson:(ABRecordRef)person
has been deprecated as of iOS8 and its functionally has also been disabled. When this method is is call on iOS8 the contact can not be select, instead the contact details are shown.
IOS 8 has introduced a new API call that allows the selection of a contact.
-- (void) peoplePickerNavigationController:(ABPeoplePickerNavigationController *)peoplePicker didSelectPerson:(ABRecordRef)person
- (BOOL)peoplePickerNavigationController:(ABPeoplePickerNavigationController *)peoplePicker shouldContinueAfterSelectingPerson:(ABRecordRef)person
has been deprecated as of iOS8 and its functionally has also been disabled. When this method is is call on iOS8 the contact can not be select, instead the contact details are shown.
IOS 8 has introduced a new API call that allows the selection of a contact.
-- (void) peoplePickerNavigationController:(ABPeoplePickerNavigationController *)peoplePicker didSelectPerson:(ABRecordRef)person
Activity
- All
- Comments
- History
- Activity
- Remote Attachments
- Subversion
Moved the contact parsing code to a common method and added the call the ios7 and ios8 specific calls. All seems to be working well.