gpt4 book ai didi

ios - 如何在 Playground 的 UIScrollView 中滚动?

转载 作者:行者123 更新时间:2023-11-28 06:47:20 24 4
gpt4 key购买 nike

您真的可以在 Playground 的 UIScrollView 中滚动吗?在下面的示例中,我希望能够向下滚动并查看标签。

import UIKit
import XCPlayground

let contentView = UIView(frame: CGRectMake(0, 0, 200, 200))
contentView.backgroundColor = UIColor.yellowColor()

let label = UILabel(frame: CGRectMake(0, 120, 20, 20))
label.text = "a"

contentView.addSubview(label)

let scrollView = UIScrollView(frame: CGRect(x: 0, y: 0, width: 100, height: 100))
scrollView.contentSize = CGSize(width: 200, height: 200)
scrollView.addSubview(contentView)
scrollView.flashScrollIndicators()

XCPlaygroundPage.currentPage.liveView = scrollView

最佳答案

编辑:7.3 于 2016 年 3 月 21 日发布到 App Store。最好下载一下there .

正如 Eric 所说,Xcode 7.3 beta 3 中添加了与 playgrounds 的交互。您可以阅读完整的公告 here .由于 Xcode 7.3 仍处于测试阶段,您需要从 here 下载它。 .

关于ios - 如何在 Playground 的 UIScrollView 中滚动?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35935713/

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