-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSettingsViewController.swift
49 lines (37 loc) · 1.22 KB
/
SettingsViewController.swift
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
//
// SettingsViewController.swift
// mb_1
//
// Created by Walter Marchewka on 12/11/15.
// Copyright © 2015 Walter Marchewka. All rights reserved.
//
import UIKit
protocol SettingsViewDelegate {
func DG_setIPAddress(ipAddress: String);
func DG_setAwake(Awake: Bool);
}
class SettingsViewController: UIViewController{
var delegate : SettingsViewDelegate! = nil
var ipAddressText : String! = nil
var awake : Bool! = nil
@IBOutlet weak var txtIPAddress: UITextField!
@IBOutlet weak var StayAwake: UISwitch!
override func viewDidLoad() {
super.viewDidLoad()
txtIPAddress.text=ipAddressText
StayAwake.on = awake
}
// Sets the ip address delegate (MainViewController) and then pops to the root view
@IBAction func ipChanged(sender: UITextField) {
if let name = sender.text {
delegate.DG_setIPAddress(name)
self.navigationController?.popToRootViewControllerAnimated(true)
} else {
print("title is nil")
}
}
@IBAction func setAwakeChanged(sender: UISwitch) {
delegate.DG_setAwake(sender.on)
//self.navigationController?.popToRootViewControllerAnimated(true)
}
}