I have this in my appDelegate and was wondering how to make this into one extension?
extension UIViewController {
var appDelegate:AppDelegate {
return UIApplication.sharedApplication().delegate as! AppDelegate
}
}
extension Blue {
var appDelegate:AppDelegate {
return UIApplication.sharedApplication().delegate as! AppDelegate
}
}
extension Green {
var appDelegate:AppDelegate {
return UIApplication.sharedApplication().delegate as! AppDelegate
}
}
...