這裏是我的代碼試圖聲明自定義對象的數組中迅速
var planetNames = ["mercury", "venus", "earth", "mars", "jupiter", "saturn", "uranus", "neptune", "pluto"] //names of the planets
for currentRing in 0..<orbitMarkers.count
{
var planetNames[currentRing] = planet(size: 1.2)
}
,這裏是我的課
class planet
{
var size: CGFloat
init(size: CGFloat)
{
self.size = size
}
}
我試圖找出我怎麼能做出8數組新的 「行星」 對象
旁註:我建議使用上駱駝情況下爲類,所以開始以大寫字母和大寫一個新字的每一個字符,例如:「PlanetViewController」,或在這種情況下'星球' – Simon