2017-02-09 01:41:17 +08:00
|
|
|
//
|
|
|
|
|
// SpecialThanksTableViewController.swift
|
|
|
|
|
// pass
|
|
|
|
|
//
|
|
|
|
|
// Created by Mingshen Sun on 9/2/2017.
|
|
|
|
|
// Copyright © 2017 Bob Sun. All rights reserved.
|
|
|
|
|
//
|
|
|
|
|
|
|
|
|
|
import UIKit
|
|
|
|
|
|
|
|
|
|
class SpecialThanksTableViewController: BasicStaticTableViewController {
|
|
|
|
|
let openSourceComponents = [
|
2019-01-14 20:57:45 +01:00
|
|
|
["Contributors".localize(),
|
2017-02-23 20:31:16 +08:00
|
|
|
"https://github.com/mssun/passforios/graphs/contributors"],
|
2017-02-09 01:41:17 +08:00
|
|
|
["Password Store",
|
2017-02-12 02:04:06 +08:00
|
|
|
"https://passwordstore.org"],
|
2017-02-09 01:41:17 +08:00
|
|
|
["Icon8",
|
2017-02-12 02:04:06 +08:00
|
|
|
"https://icons8.com"],
|
|
|
|
|
["FlatIcon",
|
2017-02-21 00:32:35 +08:00
|
|
|
"https://www.flaticon.com"],
|
2020-06-28 21:25:40 +02:00
|
|
|
]
|
2018-12-09 16:59:07 -08:00
|
|
|
|
2017-02-09 01:41:17 +08:00
|
|
|
override func viewDidLoad() {
|
|
|
|
|
tableData.append([])
|
|
|
|
|
for item in openSourceComponents {
|
|
|
|
|
tableData[0].append(
|
2017-02-10 16:44:59 +08:00
|
|
|
[CellDataKey.action: "link", CellDataKey.title: item[0], CellDataKey.link: item[1]]
|
2017-02-09 01:41:17 +08:00
|
|
|
)
|
|
|
|
|
}
|
|
|
|
|
super.viewDidLoad()
|
2017-02-09 21:45:31 +08:00
|
|
|
}
|
|
|
|
|
}
|