UIPopoverController中的UIScrollView

时间:2015-10-04 11:35:26

标签: ios uiscrollview uiimageview

我正在努力使用UIPopoverController启用UIScrollView缩放。 scrollView是600x600,它应该显示一个显示UIImageView的视图控制器。图像出现,但不会居中。

这是popover中显示的视图控制器中viewDidLoad方法的代码。

- (void)viewDidLoad {
    self.imageView = [[UIImageView alloc] init];
    self.imageView.contentMode = UIViewContentModeScaleAspectFit;
    self.imageView.image = self.image;

    self.scrollView = [[UIScrollView alloc] init];
    self.scrollView.backgroundColor = [UIColor greenColor];
    [self.scrollView setContentSize:self.imageView.image.size];
    [self.scrollView setDelegate:self];

    [self.imageView setFrame:CGRectMake(0, 0, 600, 600)];
    self.view = self.scrollView;
    [self.scrollView addSubview:self.imageView];
    // Do any additional setup after loading the view.
}

UIScrollViewUIImageView被声明为弹出窗口中显示的UIViewController内的属性。 image是另一个属性,设置为在创建UIViewController时指向图像。

这就是看起来的样子。

enter image description here

我想将图像置于弹出框中并使其合适。我怎样才能做到这一点?感谢。

1 个答案:

答案 0 :(得分:2)

您需要做的是:

第一

在您的uiviewcontroller中显示为弹出窗口

override func viewWillAppear(animated: Bool) {
  super.viewWillAppear(animated)

      preferredContentSize = CGSize(width: collectionPreference.bounds.width, height: collectionPreference.bounds.height)
      println("I am appearing?")
}

然后从呈现popover的viewcontroller:

使其符合UIPresentationStyleForPresentingController协议,

并实现这两件事:

第一:

func adaptivePresentationStyleForPresentationController(controller: UIPresentationController) -> UIModalPresentationStyle {
  return UIModalPresentationStyle.None
}

第二:在你的准备方法中:

if let identifier = segue.identifier {
    if identifier == "segueToYourPopoverVC" {
        if let pVC = segue.destinationViewController as? YourPopoverVC {

            let ppc = pVC.popoverPresentationController
            ppc?.delegate = self
        }
     }
}
祝你好运