[iOS] Made the resources path the default working directory

This commit is contained in:
Laurent Gomila 2013-09-11 23:13:57 +02:00 committed by Jonathan De Wachter
parent 3872b27569
commit 8f459cd1af

View File

@ -79,7 +79,10 @@ namespace
// Register orientation changes notifications
[[UIDevice currentDevice] beginGeneratingDeviceOrientationNotifications];
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(deviceOrientationDidChange:) name:UIDeviceOrientationDidChangeNotification object: nil];
// Change the working directory to the resources directory
[[NSFileManager defaultManager] changeCurrentDirectoryPath: [[NSBundle mainBundle] resourcePath]];
// Schedule an indirect call to the user main, so that this call (and the whole
// init sequence) can end, and the default splashscreen can be destroyed
[self performSelector:@selector(runUserMain) withObject:nil afterDelay:0.0];