为什么这个Swift代码会在游乐场崩溃?

时间:2015-05-09 08:05:50

标签: ios swift swift-playground

我正在按照在操场上绘制图像的教程。我真的很困惑,以下代码崩溃了:

import UIKit

let size = CGSize(width: 120, height: 200)

UIGraphicsBeginImageContextWithOptions(size, true, 0)

let context = UIGraphicsGetCurrentContext()

let darkGoldColor = UIColor(red: 0.6, green: 0.5, blue: 0.15, alpha: 1.0)
let midGoldColor = UIColor(red: 0.86, green: 0.73, blue: 0.3, alpha: 1.0)

经过多次测试后,我非常确定 UIGraphicsGetCurrentContext()与此问题有关。在我注释掉该行后,代码就会运行。但是,如果我只注释掉最后一行,代码也会运行,这真的很奇怪。有人可以帮助我吗?非常感谢。

0 个答案:

没有答案