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 as a name with space like "Super Record" iOS replace the space with an "_" so the correct name for the model become "Super_Record.momd"
I have solved temporarily changing:
let infoDictionary = NSBundle.mainBundle().infoDictionary as NSDictionary? let stackName = (infoDictionary!["CFBundleName"] as! String) let storeName = stackName + ".sqlite"
with
let infoDictionary = NSBundle.mainBundle().infoDictionary as NSDictionary? let stackName = (infoDictionary!["CFBundleName"] as! String).stringByReplacingOccurrencesOfString(" ", withString: "_") let storeName = stackName + ".sqlite"
@michaelarmstrong you should considering it if you are writing the new stack.
The text was updated successfully, but these errors were encountered:
Tackling this as part of the Stack refactor.
Sorry, something went wrong.
michaelarmstrong
No branches or pull requests
If the target as a name with space like "Super Record" iOS replace the space with an "_" so the correct name for the model become "Super_Record.momd"
I have solved temporarily changing:
with
@michaelarmstrong you should considering it if you are writing the new stack.
The text was updated successfully, but these errors were encountered: