Settings: Switch to UIKit

This commit is contained in:
James Magahern
2021-06-29 18:09:42 -07:00
parent c60df21c54
commit 656cf55b96
9 changed files with 424 additions and 26 deletions

View File

@@ -0,0 +1,27 @@
//
// RedirectRulesSettingsViewController.swift
// RedirectRulesSettingsViewController
//
// Created by James Magahern on 6/25/21.
//
import UIKit
class RedirectRulesSettingsViewController: UIViewController
{
init() {
super.init(nibName: nil, bundle: nil)
tabBarItem.title = "Redirect Rules"
tabBarItem.image = UIImage(systemName: "arrowshape.zigzag.forward")
}
required init?(coder: NSCoder) {
fatalError("init(coder:) has not been implemented")
}
override func viewDidLoad() {
view.backgroundColor = .red
}
}