I’m trying to follow highoncoding’s tutorial in order to learn SQLite and using it with iOS programming.
When adding this line of code to my AppDelegate.m file:
self.databaseName = @"Customers.db";
I get the following error:
Blockquote Property ‘databaseName’ not found on object of type ‘AppDelegate *’
libsqlite3.dylib is in my frameworks folder.
What could be the problem?
Have you synthesized the variable? It seems that the property is missing.