如何使用CGPointMake
in Swift
?有沒有相當於它?我得到一個錯誤:CGPointMake in Swift
Use of unresolved identifier 'CGPointMake'
基本上,我想分配給雪碧套件節點的位置,且無法弄清楚如何做到這一點的斯威夫特。
class PlayerSpaceship: Spaceship {
func launchMissile() {
var missile = Missile.playerMissile()
// This line gives above mentioned error.
missile.position = CGPointMake(0.0, 0.0)
}
}
我能夠在Swift中編譯'var p = CGPointMake(0,0)'就好了。是否有可能你沒有包含CoreGraphics框架? –
我非常確定CGPointMake只存在,因爲NeXTSTEP在C99出現之前:'(CGPoint){0.0,0.0}' –
@AaronGolden,謝謝。事實上,增加'導入CoreGraphics'解決了這個問題。 – RaffAl