我再次重复这个问题,因为我找不到任何解决方案。
我的问题我有一个XIB,我有标签和UIPickerView.I我试图在iPad中的UIPopOverController内使用这个XIB.But视图没有正确呈现。实际上这是我将它添加到视图中的视图弹出窗口。
这是我正在使用的代码
MyPricePickerViewController *priceviewobj=[[MyPricePickerViewController alloc]init];
UINavigationController *navigationcontroller=[[UINavigationController
alloc]initWithRootViewController:priceviewobj];
popover = [[UIPopoverController
alloc]initWithContentViewController:navigationcontroller];
[popover setPopoverContentSize:CGSizeMake(290,410) animated:YES];
[self.popover presentPopoverFromRect:CGRectMake(10,212,20,30) inView:self.view
permittedArrowDirections:UIPopoverArrowDirectionUp animated:YES];
我显示其他没有UIPicker视图的XIB并且它们正确显示。当我运行应用程序时,弹出窗口呈现如下
请有人建议我解决这个问题。谢谢提前