首页
学习
活动
专区
圈层
工具
发布
社区首页 >问答首页 >迁移到UIPopoverPresentationController

迁移到UIPopoverPresentationController
EN

Stack Overflow用户
提问于 2014-09-22 08:22:53
回答 1查看 2K关注 0票数 0

我想为我的iPhone应用程序创建相同的弹出窗口,大小为GGrect(320 100.0)。这是我以前的代码:

代码语言:javascript
复制
View * pk1 = [[View alloc] init];
UINavigationController *nav = [[UINavigationController alloc] initWithRootViewController:pk1];
pop = [[UIPopoverController alloc] initWithContentViewController:nav];
[pop setDelegate:self];
[pop presentPopoverFromRect:[self btnsavepart].frame inView:[self view] permittedArrowDirections:UIPopoverArrowDirectionAny animated:YES];
[nav release];

我使用了这个代码,但它不会改变

代码语言:javascript
复制
nav.preferredContentSize = CGSizeMake(320, 100);

我不能用UIPopoverPresentationController更改UIpopovercontriller

如何指定(320 100.0)GGrect

我想我只能在水平方向上改变,但我该怎么做呢?

代码语言:javascript
复制
  View *viewController = [[[View alloc] init] autorelease];
    UINavigationController *navController = [[[UINavigationController alloc] initWithRootViewController:viewController] autorelease];


    navController.modalPresentationStyle = UIModalPresentationPopover;
    navController.popoverPresentationController.permittedArrowDirections = UIPopoverArrowDirectionUp;
    navController.popoverPresentationController.sourceRect = btnsavepart.bounds;
    navController.popoverPresentationController.sourceView = btnsavepart;
    navController.popoverPresentationController.delegate = self;

    [self presentViewController:navController animated:YES completion:nil];

我想要iPhone中的UIPopoverPresentationController而不是FullScreen表单

我添加了这些代码,但我给出了FullScreen视图

代码语言:javascript
复制
- (UIModalPresentationStyle)adaptivePresentationStyleForPresentationController:(UIPresentationController *)controller

{

代码语言:javascript
复制
return NO;

}

EN

回答 1

Stack Overflow用户

发布于 2014-09-29 20:56:32

我使用Xamarin,但它也是一样的,为了指定要在其中显示UIViewController的弹出窗口的大小,在UIVIewController的属性中有PreferredContentSize属性。您可以在其中指定大小。

我在这里的某个地方看到过,但忘了在哪里了。

票数 0
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/25965200

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档