我在这里检查了其他解决方案,但不是与我的问题有关。所以我不认为这是重复的。是什么造成了这个错误?我检查了我的scrollView,它没有设置为0,0这是我的ImageView选择器的代码:
imagePicker =[[UIImagePickerController alloc] init];
imagePicker.delegate=self;
imagePicker.sourceType=UIImagePickerControllerSourceTypePhotoLibrary;
imagePicker.allowsEditing=YES;
self.popover=[[UIPopoverController alloc] initWithContentViewController:imagePicker];
[self.popover presentPopoverFromRect:self.button.bounds inView:sender permittedArrowDirections:UIPopoverArrowDirectionAny animated:YES];
我无法看到问题,有人能告诉我我在寻找什么。
答案 0 :(得分:0)
首先设置delegate
的{{1}}。
UIPopoverController
不确定,但问题是self.popoverController.delegate = self;
所以给它适当的presentPopoverFromRect:self.button.bounds
,可能会解决你的问题。
如此
CGRect
我也不知道什么是 inView:发件人,发件人必须 UIView 。