无法在Playground中显示UIBezierPath

时间:2017-04-16 00:22:12

标签: swift xcode swift-playground

我记得曾经有一段时间我可以想象Xcode Playground中的bezier路径,但是最新版本(8.3.1)的能力消失了吗?

import UIKit

let path = UIBezierPath()
path.move(to: .zero)
path.addLine(to: CGPoint(x: 100, y: 100))

我只看到路径有多少元素:

enter image description here

在Xcode 8.3.1中,任何人都有与Playground相同的问题吗?

1 个答案:

答案 0 :(得分:3)

我想说这是Xcode 8.3中的一个错误。它在Xcode 8.3中给了我相同的结果。我刚刚在Xcode 8.2.1中尝试了你的代码,它在快速浏览窗口中绘制了一条线。

image of line in the quick look window

这应该作为错误报告提交给Apple。

与此同时,要么使用较旧版本的Xcode,要么在视图中嵌入bezier路径并快速查看视图。