forked from asuc-octo/berkeley-mobile-ios
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLibrariesListViewController.swift
49 lines (29 loc) · 1.08 KB
/
LibrariesListViewController.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
//
// LibrariesListViewController.swift
// berkeleyMobileiOS
//
// Created by Sampath Duddu on 11/13/16.
// Copyright © 2016 org.berkeleyMobile. All rights reserved.
//
import UIKit
class LibrariesListViewController: UIViewController {
@IBOutlet var librariesTableView: UITableView!
override func viewDidLoad() {
super.viewDidLoad()
// Do any additional setup after loading the view.
}
override func didReceiveMemoryWarning() {
super.didReceiveMemoryWarning()
// Dispose of any resources that can be recreated.
}
@IBAction func switchMapView(_ sender: Any) {
self.performSegue(withIdentifier: "listToMap", sender: self)
}
@IBAction func switchMap(_ sender: Any) {
self.dismiss(animated: true, completion: nil)
}
@IBAction func returnList(_ sender: Any) {
// let vc = AcademicsViewController()
self.presentingViewController?.presentingViewController?.dismiss(animated: true, completion: nil)
}
}