Кто-нибудь видит, что не так с этим кодом?
UIImagePickerControllerSourceType pickerType = UIImagePickerControllerSourceTypePhotoLibrary;
UIImagePickerController *imagePicker = [[UIImagePickerController alloc] init];
[imagePicker setSourceType:pickerType];
[imagePicker setMediaTypes:[UIImagePickerController availableMediaTypesForSourceType:pickerType]];
[imagePicker setDelegate:self];
UIPopoverController *pop = [[UIPopoverController alloc] initWithContentViewController:imagePicker];
[pop setDelegate:self];
[pop presentPopoverFromRect:CGRectMake(100, 100, 100, 100) inView:self permittedArrowDirections:UIPopoverArrowDirectionAny animated:YES];
[pop setPopoverContentSize:CGSizeMake(300, 500)];
На ios4 он работает хорошо.Но на ios5 / ipad происходит сбой с
*** Assertion failure in -[PLHighlightingTableView _createPreparedCellForGlobalRow:withIndexPath:], /SourceCache/UIKit_Sim/UIKit-1912.3/UITableView.m:6072
*** Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'UITableView dataSource must return a cell from tableView:cellForRowAtIndexPath:'
Исключение возникает при прокрутке средства выбора изображений.
Есть идеи?
С уважением
-Dezember