Created
November 17, 2018 01:05
-
-
Save muizidn/3a8c883771a6836140b58a45713e793d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// MuslimNote | |
// Application.swift | |
import SubApplication | |
public class Application: SubApplication { | |
let name = "Muslim Note" | |
let thumbnail = UIImage(named: "muslim_note_thumnail") | |
let starter: UIViewController | |
init() { | |
let vc = HomeController( | |
nibName: "HomeController" | |
bundle: Bundle(identifier: MODULE_BUNDLE_IDENTIFIER) | |
) | |
starter = vc | |
} | |
func start(window: UIWindow) { | |
// Start App From Executable | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment