FF

Первые раз такое в тг вижу 😊
Size: a a a
FF

A
UIKit
import Foundation
class ViewController: UIViewController {
var helloWorldTimer: Timer?
override func viewDidLoad() {
super.viewDidLoad
helloWorldTimer = Timer.scheduledTimer(timeInterval: 60.0,
target: self,
selector:#selector#selector(sayHello),
userInfo: nil,
repeats: true)
}
@objc func sayHello() {
print("hello World")
}
}ВП
ВП
ВП
ВП

SV
ВП
AD