Overview
Comment: | [iOS] Fix new Swift warning |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
a5a265ded5752d8d1d050ab381ef9687 |
User & Date: | js on 2022-06-15 18:37:38 |
Other Links: | manifest | tags |
Context
2022-06-15
| ||
18:38 | [iOS] Fix race in UI check-in: 18ce2e80c8 user: js tags: trunk | |
18:37 | [iOS] Fix new Swift warning check-in: a5a265ded5 user: js tags: trunk | |
18:36 | [iOS] Update Xcode project check-in: acf889eaa0 user: js tags: trunk | |
Changes
Modified iOS/SelectKeyFileController.swift from [626928c607] to [db56ffe460].
︙ | ︙ | |||
62 63 64 65 66 67 68 | navigationController?.popViewController(animated: true) return } httpServerThread.start() } | | | 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 |
︙ | ︙ |