2019-04-16 20:38:07 +02:00
|
|
|
//
|
|
|
|
// AddAccountViewController.swift
|
|
|
|
// NetNewsWire
|
|
|
|
//
|
|
|
|
// Created by Maurice Parker on 4/16/19.
|
|
|
|
// Copyright © 2019 Ranchero Software, LLC. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
import UIKit
|
|
|
|
|
2019-04-16 23:03:30 +02:00
|
|
|
class AddAccountViewController: UITableViewController, AddContainerViewControllerChild {
|
|
|
|
var delegate: AddContainerViewControllerChildDelegate?
|
|
|
|
|
2019-04-16 20:38:07 +02:00
|
|
|
override func viewDidLoad() {
|
|
|
|
super.viewDidLoad()
|
|
|
|
|
|
|
|
// I couldn't figure out the gap at the top of the UITableView, so I took a hammer to it.
|
|
|
|
tableView.contentInset = UIEdgeInsets(top: -28, left: 0, bottom: 0, right: 0)
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2019-04-16 23:03:30 +02:00
|
|
|
func cancel() {
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
func add() {
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2019-04-16 20:38:07 +02:00
|
|
|
}
|