Wont run on ios 9 after build on xcode 7.
Getting this error
NSInternalInconsistencyException', reason: 'Application windows are expected to have a root view controller at the end of application launch' Seems to be a common issue with ios9, but I can't figure out how to resolve :-(
Sorry to hear that. I don't have a Mac development workstation at this time. If you manage to get this working please submit a pull request and I will update the master.
In uitilityAppDelegate.m file, change [window addSubview..... ] to the code below:
[self.window setRootViewController:mainViewController];
Great, can you issue a pull request and I will add the fix?