let alertControllerLoad = UIAlertController()
let alertViewLoad = UIAlertView()
These are both established as global variables in my inbox class. I check if the device is iOS8 or above before I call UIAlertController but since it creates an instance of the UIAlertController in the class it crashes on ios7 devices. I need them to be global variables since I call them from multiple functions. Is there a work around using init() or is this something that doesnt have a work around.