passforios/pass/Controllers/SpecialThanksTableViewController.swift
Yishi Lin af9d4f1c24 Polish the storyboard
- Set navigation titles in the storyboard, easier to find scenes now
2017-04-06 23:03:39 +08:00

32 lines
858 B
Swift

//
// 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 = [
["Contributors",
"https://github.com/mssun/passforios/graphs/contributors"],
["Password Store",
"https://passwordstore.org"],
["Icon8",
"https://icons8.com"],
["FlatIcon",
"https://www.flaticon.com"],
]
override func viewDidLoad() {
tableData.append([])
for item in openSourceComponents {
tableData[0].append(
[CellDataKey.action: "link", CellDataKey.title: item[0], CellDataKey.link: item[1]]
)
}
super.viewDidLoad()
}
}