我有一个简单的文件,我想在这里保持低调。如果我能减少构建时间,我会的。在 UIKit 和 CoreGraphics 之间,哪个更小/更紧凑,更适合我的情况?

import CoreGraphics // can be replaced with import UIKit

let π = CGFloat(M_PI)
let twoπ = 2 * π

最佳答案

CoreGraphics 是更紧凑的一种。 UIKit 本身依赖于 CoreGraphics。您不需要导入 UIKit,除非您需要使用其中定义的内容。

关于ios - 导入 UIKit 或 CoreGraphics?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/31100024/

10-11 14:55