0
我在UIMapView
中顯示detailView.xib
的UIPopover
。彈出窗口中的顯示視圖
我DetailView.xib
是:
但是當我嘗試在酥料餅,看看它表明這樣的:
我的代碼如下:
detailsView *popUp=[[detailsView alloc] initWithNibName:@"detailsView_ipad" bundle:nil];
popView = [[UIPopoverController alloc]initWithContentViewController:popUp];
popView.delegate =self;
[popView setPopoverContentSize:CGSizeMake(600, 400)];
[popView presentPopoverFromRect:control.frame inView:self.view permittedArrowDirections:UIPopoverArrowDirectionUp animated:YES];
如何顯示實際xib在UIPopover
??
但我不想將視圖顯示爲彈出窗口中的實際大小 – user1673099
如果您希望您的視圖適合您提供的任何內容大小,那麼您需要使用Autoresizing或自動佈局(iOS 6+)。 –
我如何啓用自動調整大小。 – user1673099