Flycut/Flycut-iOS/SettingsViewController.swift
Mark Jerde 99d471f46a Extend Settings access to Flycut iOS
Use InAppSettingsKit to display Settings within the app in addition to within
Settings.app.  This allows changes that initiate a user prompt to prompt the
user immediately when the change is made, rather than upon app launch as is the
case with using Settings.app, providing better user experience.

Move acknowledgements from preferences panel into a text file that is sourced into the preferences panel on macOS and the settings bundle (in-app only) on iOS.
2018-10-30 23:05:03 -05:00

22 lines
444 B
Swift

//
// SettingsView.swift
// Flycut
//
// Created by Mark Jerde on 10/24/17.
//
//
import Foundation
class SettingsViewController: IASKAppSettingsViewController {
required init?(coder aDecoder: NSCoder) {
super.init(style: .grouped)
super.showCreditsFooter = false
}
// - (id)initWithStyle:(UITableViewStyle)style {
required override init(style:UITableViewStyle) {
super.init(style: style)
super.showCreditsFooter = false
}
}