I'm trying to follow SQLite to learn and use it with iOS programming.
When adding this line of code to my appillegate.m file:
self.databaseName = @ "customers.db"; I get the following error:
The block property property 'database name' was not found on the type of object 'AppDelegate *'
libsqlite3.dylib What is the problem in my frameworks folder?
Have you synthesized the variable? It appears that the property is missing.
Comments
Post a Comment