所以我在view
中有一串UIScrollView
个按钮。当用户按下按钮时,我希望UIPopOverController显示指向所选按钮。它有点工作,但弹出窗口的大小错误,并指向视图中的随机点。这是我的代码。提前谢谢。
-(void)detail:(id)sender{
UIButton *button = sender;
NSLog(@"tag = %i", button.tag);
UINavigationController *navController = [[UINavigationController alloc] initWithRootViewController:viewController];
if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad) {
self.popover = [[UIPopoverController alloc] initWithContentViewController:navController];
self.popover.delegate = self;
[self.popover presentPopoverFromRect:button.bounds inView:self.view permittedArrowDirections:UIPopoverArrowDirectionAny animated:YES];
}
比popover大小的问题: 在popover内部的视图中,我有:
self.contentSizeForViewInPopover = scroll.contentSize;
NSLog(@"%f, %f", scroll.contentSize.height, scroll.contentSize.width);
NSLog(@"showing: %f, %f", self.contentSizeForViewInPopover.height, self.contentSizeForViewInPopover.width);
并且两个日志都匹配。所以我认为一切都应该正常。但事实并非如此。这是一个截屏。如果您需要更多我的代码,请告诉我。提前谢谢。
答案 0 :(得分:23)
我注意到的第一件事是你应该使用button.frame而不是 from 矩形的button.bounds。这些UIView属性之间的差异:
视图的几何形状由其框架,边界和中心定义 属性。 frame属性定义了原点和维度 它的超视图坐标系中的视图通常是 在布局期间用于调整视图的大小或位置。
bounds属性定义视图的内部尺寸 看到它们,几乎只用于自定义绘图代码。
您可以使用popover消息设置setPopoverContentSize控制器的高度:
// so something like this ...
[self.popover setPopoverContentSize:CGSizeMake(320, 460)];
// and to bind the popover to your button
[self.popover presentPopoverFromRect:button.frame inView:self.view permittedArrowDirections:UIPopoverArrowDirectionAny animated:YES];
答案 1 :(得分:1)
仅关于弹出窗口的大小:我设法使用变量加权的UILabel:
UILabel *hinweis;
hinweis.text = @"...";
hinweis.frame = CGRectMake(x,y,width,800);
[hinweis sizeToFit];
对于箭头:您是否尝试过像self.parentViewController.view这样的不同的inView参数?