add about page

This commit is contained in:
Bob Sun 2017-02-09 01:41:17 +08:00
parent 158fa99938
commit 9c13a628b9
No known key found for this signature in database
GPG key ID: 1F86BA2052FED3B4
6 changed files with 285 additions and 200 deletions

View file

@ -0,0 +1,28 @@
//
// 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 = [
["Password Store",
"http://passwordstore.org"],
["Icon8",
"http://icons8.com"],
]
override func viewDidLoad() {
tableData.append([])
for item in openSourceComponents {
tableData[0].append(
[CellDataKey.type: CellDataType.link, CellDataKey.title: item[0], CellDataKey.link: item[1]]
)
}
navigationItemTitle = "Special Thanks"
super.viewDidLoad()
}}