UIScrollView 在 Swift 中以编程方式

Posted

技术标签:

【中文标题】UIScrollView 在 Swift 中以编程方式【英文标题】:UIScrollView Programmatically in Swift 【发布时间】:2015-03-04 07:34:16 【问题描述】:

我一直无法找到一种使用 Swift 以编程方式准确启用水平和垂直滚动的方法(我的对象是可编程的,因此无法在 IB 中使用自动布局)。

我遵循的教程允许按预期滚动两种方式。问题是无论您滚动到哪里,我的按钮都会停留在屏幕的同一位置。我在另一个教程中也有同样的结果,我很困惑为什么会这样。

我无法找到这个问题的答案,所以我假设其他一些人会发现这很有用。

这是我的代码。我根据这个教程做了一个非常基础的项目:http://koreyhinton.com/blog/uiscrollview-crud.html

class ViewController: UIViewController, UIScrollViewDelegate 
    var scrollView: UIScrollView!
    var containerView = UIView()
    
    override func viewDidLoad() 
        super.viewDidLoad()
        
        let buttonOne = UIButton.buttonWithType(UIButtonType.System) as UIButton
        
        buttonOne.frame = CGRectMake(10, 50, 50, 50)
        buttonOne.backgroundColor = UIColor.greenColor()
        buttonOne.setTitle("test", forState: UIControlState.Normal)
        buttonOne.addTarget(self, action: "buttonAction1x1:", forControlEvents: UIControlEvents.TouchUpInside)
        
        self.scrollView = UIScrollView()
        self.scrollView.delegate = self
        self.scrollView.contentSize = CGSizeMake(1000, 1000)
        
        containerView = UIView()
        
        scrollView.addSubview(containerView)
        view.addSubview(scrollView)
        self.view.addSubview(buttonOne)
    

    override func viewDidLayoutSubviews() 
        super.viewDidLayoutSubviews()

        scrollView.frame = view.bounds
        containerView.frame = CGRectMake(0, 0, scrollView.contentSize.width, scrollView.contentSize.height)
    
    
    override func didReceiveMemoryWarning() 
        super.didReceiveMemoryWarning()
    

【问题讨论】:

尝试将按钮添加到scrollView或containerView 【参考方案1】:

您的代码运行良好,但是在视图上添加 buttonOne 时出现了一个小问题。

您在 self.view 上添加了 buttonOne(即 self.view 的子视图),而不是在 scrollView 上的 containerView。

你应该使用下面的代码

containerView.addSubview(buttonOne)

而不是

self.view.addSubview(buttonOne)

【讨论】:

这很有道理,但我从来没有想过。谢谢!【参考方案2】:

所以你应该使用以下行

containerView.userInteractionEnabled = true

【讨论】:

以上是关于UIScrollView 在 Swift 中以编程方式的主要内容,如果未能解决你的问题,请参考以下文章

在 Swift 中以编程方式添加时,UIScrollView 根本不滚动?

未能尝试在 SWIFT 中以编程方式在滚动视图中添加 UIView 约束

在 UIStackView 中以编程方式添加内容时的 UIScrollView 高度

在 UIScrollView 中以编程方式依次单击 10 个 UIButton

如何在 Swift 中以编程方式将 UILabel 对象居中?

Swift - 以编程方式将 UIScrollView 宽度设置为 100%