This repository has been archived on 2026-05-26. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
avh-plan-ios/AvH Plan/GeneralPlanViewController.swift
T

46 lines
1.1 KiB
Swift
Raw Normal View History

//
// GeneralViewController.swift
// AvH Plan
//
// Created by Deniz Duezgoeren on 16.07.19.
// Copyright © 2019 Deniz Duezgoeren. All rights reserved.
//
import UIKit
class GeneralViewController: PlanViewController {
@IBOutlet weak var toolbar: UINavigationBar!
override func viewDidLoad() {
super.viewDidLoad()
}
override func getViewType() -> String {
return "plan"
}
override func getRefreshViewString() -> String {
return NSLocalizedString("fetch_plan", comment: "")
}
override func getFromDatabase() -> [SubstModel] {
return df.getFromDatabase()
}
override func getToolbarBottomAnchor() -> NSLayoutYAxisAnchor {
return toolbar.bottomAnchor
}
/*
// MARK: - Navigation
// In a storyboard-based application, you will often want to do a little preparation before navigation
override func prepare(for segue: UIStoryboardSegue, sender: Any?) {
// Get the new view controller using segue.destination.
// Pass the selected object to the new view controller.
}
*/
}