Settings: Switch to UIKit
This commit is contained in:
27
App/Settings/RedirectRulesSettingsViewController.swift
Normal file
27
App/Settings/RedirectRulesSettingsViewController.swift
Normal 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
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user