gpt4 book ai didi

ios - 如何快速将 UIViewController 添加到 UIScrollView 中?

转载 作者:行者123 更新时间:2023-11-28 07:33:01 26 4
gpt4 key购买 nike

我想将 UIViewController 添加到 UIScrollView 中。
我搜索并尝试过,但找不到解决方案。
最容易理解的方式是this.

这是我的代码。

import UIKit

class ViewController: UIViewController {

@IBOutlet weak var scrollView: UIScrollView!



override func viewDidLoad() {
super.viewDidLoad()

self.scrollView.contentSize.width = self.view.frame.width * 2


let test = self.storyboard?.instantiateViewController(withIdentifier: "Test") as! TestViewController

self.addChild(test)
self.scrollView.addSubview(test.view)
test.willMove(toParent: self)

test.view.frame.origin = CGPoint.zero
}
}

但是,我这种方式是这样的错误。 enter image description here enter image description here

如何将UIViewController添加到UIScrollView中??
请帮助我。

最佳答案

在你的 Storyboard中,只需拖放一个containerView,它就会生成一个UIViewController在你的 scrollView 中你想要的

关于ios - 如何快速将 UIViewController 添加到 UIScrollView 中?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54132461/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com