Closed PGLongo closed 9 years ago
If the target contains space the model is automatically named with '_' instead of ' ', for example 'Pokemon Ruby Omega' became 'Pokemon_Ruby_Omega'
let stackName = (infoDictionary!["CFBundleName"] as NSString
We could change stackName like this
let stackName = (infoDictionary!["CFBundleName"] as NSString).stringByReplacingOccurrencesOfString(" ", withString: "_")
Maybe we can also change NSString to String.
Maybe you can fix in #22
I can confirm this will indeed be fixed in #22
If the target contains space the model is automatically named with '_' instead of ' ', for example 'Pokemon Ruby Omega' became 'Pokemon_Ruby_Omega'
We could change stackName like this
Maybe we can also change NSString to String.