21 lines
512 B
Swift
21 lines
512 B
Swift
//
|
|
// GeneralSettingsTableViewController.swift
|
|
// pass
|
|
//
|
|
// Created by Mingshen Sun on 9/2/2017.
|
|
// Copyright © 2017 Bob Sun. All rights reserved.
|
|
//
|
|
|
|
import UIKit
|
|
|
|
class GeneralSettingsTableViewController: BasicStaticTableViewController {
|
|
|
|
override func viewDidLoad() {
|
|
navigationItemTitle = "General"
|
|
tableData = [
|
|
// section 0
|
|
[[.title: "About Repository", .action: "segue", .link: "showAboutRepositorySegue"],],
|
|
]
|
|
super.viewDidLoad()
|
|
}
|
|
}
|