62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
|
navigationController?.popViewController(animated: true)
return
}
httpServerThread.start()
}
deinit {
httpServerThread.runLoop.stop()
httpServerThread.join()
}
override func tableView(_ tableView: UITableView,
numberOfRowsInSection section: Int) -> Int {
return keyFiles.count + 1
|
|
|
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
|
navigationController?.popViewController(animated: true)
return
}
httpServerThread.start()
}
override func viewDidDisappear(_ animated: Bool) {
httpServerThread.runLoop.stop()
httpServerThread.join()
}
override func tableView(_ tableView: UITableView,
numberOfRowsInSection section: Int) -> Int {
return keyFiles.count + 1
|