I'm using the CNContactPickerViewController like so:
CNContactPickerViewController *vc = [CNContactPickerViewController new];
vc.delegate = self;
[self presentViewController:vc animated:YES completion:nil];The picker is displayed correctly but when the search textfield at the top is selected, the top of the content is hidden behind the search bar. Is this a known issue or am I missing something?