We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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.
The text was updated successfully, but these errors were encountered:
Maybe you can fix in #22
Sorry, something went wrong.
I can confirm this will indeed be fixed in #22
michaelarmstrong
No branches or pull requests
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.
The text was updated successfully, but these errors were encountered: