Я нашел this question и попытался скопировать код в проект Xcode, но я получаю следующее сообщение об ошибке.Функция повторения с использованием NSTimer с целью: self in Swift
error: use of unresolved identifier 'self'
Каков правильный путь?
EDIT: Вот код, испытанные в детской площадки:
//: Playground - noun: a place where people can play
import Cocoa
import Foundation
func sayHello() {
print("hello World")
}
var SwiftTimer = NSTimer()
SwiftTimer = NSTimer.scheduledTimerWithTimeInterval(1, target:self, selector: Selector("sayHello"), userInfo: nil, repeats: true)
Опубликовать код подкатегории –
@AlessandroOrnano Я редактировал вопрос – HelloToYou