gpt4 book ai didi

ios - Swift:只能在类成员上指定覆盖

转载 作者:行者123 更新时间:2023-11-28 09:46:54 24 4
gpt4 key购买 nike

在我的 GameScene.swift 文件中,存在导致构建失败的错误。

override func touchesBegan(touches: NSSet, withEvent event: UIEvent) {
/* Called when a touch begins */

for touch: AnyObject in touches {
let location = touch.locationInNode(self)

let sprite = SKSpriteNode(imageNamed:"Spaceship")

sprite.xScale = 0.5
sprite.yScale = 0.5
sprite.position = location

let action = SKAction.rotateByAngle(CGFloat(M_PI), duration:1)

sprite.runAction(SKAction.repeatActionForever(action))

self.addChild(sprite)
}
}

override func update(currentTime: CFTimeInterval) {
/* Called before each frame is rendered */
}

有人告诉我“只能在类成员上指定覆盖”。

我应该如何解决这个问题?

这就是全部:

//
// GameScene.swift
// Swipe Racer
//
// Created by William Clark on 25/10/2014.
// Copyright (c) 2014 Arc of Clark. All rights reserved.
//

import SpriteKit
import Darwin

class GameScene: SKScene {

override func didMoveToView(view: SKView) {
/* Setup your scene here */

var swipes = SPSwipes()

if swipes.no_of_swipes == 5 {
var array = Array<UInt32>(count: 5, repeatedValue: 0)
for i in 0 ..< 5 {
array[i] = arc4random_uniform(100)}
}

if swipes.no_of_swipes == 10 {
var array = Array<UInt32>(count: 10, repeatedValue: 0)
for i in 0 ..< 10 {
array[i] = arc4random_uniform(100)}
}

if swipes.no_of_swipes == 25 {
var array = Array<UInt32>(count: 25, repeatedValue: 0)
for i in 0 ..< 25 {
array[i] = arc4random_uniform(100)}
}

func touchesBegan(touches: NSSet, withEvent event: UIEvent) {
/* Called when a touch begins */

for touch: AnyObject in touches {
let location = touch.locationInNode(self)

let sprite = SKSpriteNode(imageNamed:"Spaceship")

sprite.xScale = 0.5
sprite.yScale = 0.5
sprite.position = location

let action = SKAction.rotateByAngle(CGFloat(M_PI), duration:1)

sprite.runAction(SKAction.repeatActionForever(action))

self.addChild(sprite)
}
}

func update(currentTime: CFTimeInterval) {
/* Called before each frame is rendered */
}
}

还有评论区提到的底部语法错误。

最佳答案

在行前加一个“}”

func touchesBegan(touches: NSSet, withEvent event: UIEvent) {

关于ios - Swift:只能在类成员上指定覆盖,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26828504/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com