错误: reason: '-[CyAddNewAddressController peoplePickerNavigationControllerDidCancel:]: unrecognized selector sent to instance 0x14f3c0a0’
原因: iOS7中点击取消的方法, 要自己通过代理写
解决办法: 实现代理方法
- (void)peoplePickerNavigationControllerDidCancel:(ABPeoplePickerNavigationController *)peoplePicker
{
[peoplePicker dismissViewControllerAnimated:YES completion:nil];
}
转载请注明原文地址: https://ju.6miu.com/read-964533.html