这是Swift 3.2和xCode9中的一个简单的Swifter应用程序。 它的工作。 但是当这个应用程序处于后台时,我会写这个应用程序,然后它会带到前面,我会看到标准的白色屏幕。
这个想法的最佳方式是什么?
import UIKit
import AudioToolbox
import WatchKit
import Foundation
import Swifter
class ViewController: UIViewController {
override func viewDidLoad() {
super.viewDidLoad()
// Do any additional setup after loading the view, typically from a nib.
let server = HttpServer()
server["/hello"] = {
var queryParamsInfo = ""
for (name, value) in $0.queryParams {
queryParamsInfo += "\(name) -> \(value)<br/>"
}
AudioServicesPlayAlertSound(kSystemSoundID_Vibrate)
return .ok(.html("<h3>You asked for \(queryParamsInfo)</h3>"))
}
do {
try server.start()
print("Server is started")
while true {
}
}
catch {
print("Error!")
}
}
override func didReceiveMemoryWarning() {
super.didReceiveMemoryWarning()
// Dispose of any resources that can be recreated.
}
}
感谢您的帮助!
答案 0 :(得分:0)
在iOS 上 。如果
,应用程序只能进入前台您无法以编程方式将您的应用程序带到前台。