User Nucc - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T08:55:20Z http://stackoverflow.com/feeds/user/104483 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/961769/objective-c-static-instance 0 Objective-c static instance Nucc 2009-06-07T11:59:19Z 2009-06-07T13:10:45Z <p>Hi!</p> <p>I'd like to create database based models, so I wanna use my own DatabaseModel class to manage the database connection, and every class that uses database is derived from it (it would be a mapping between the model and the table). I'm using a sqlite API.</p> <p>Since I need only one database connection instance, I created a static variable to store the connection instance</p> <pre> DatabaseModel.h --------------- @interface DatabaseModel : NSObject { } // the connection instance static FMDatabase *database; +(BOOL) open; +(void) close; +(id)getDatabase; @end DatabaseModel.m --------------- // Is it necassary? static FMDatabase *database = nil; @implementation DatabaseModel +(BOOL) open { // make connection (doodled code) database = [DBAPI open]; } +(void) close { // ... } +(id)getDatabase { // Throws bad_memory_access [database retain]; return database; } @end MyClass.h --------- @interface MyClass : DatabaseModel { } -(void) foobar; @end MyClass.m --------- @implementation MyClass -(void) foobar { // This assign doesn't work database = [DatabaseModel getDatabase]; } @end </pre> <p>In this case [database retain] throws a bad_access exception. I don't understand exactly, when database is a static variable, why I get this message... </p> http://stackoverflow.com/questions/961769/objective-c-static-instance/961859#961859 0 Answer by Nucc for Objective-c static instance Nucc 2009-06-07T13:09:54Z 2009-06-07T13:09:54Z <p>Sorry guys!</p> <p>It was my mistake. In Open() function the API asks for an (NSString*) sqlite path. And I forgot to retain that variable. (I'm sometimes in trouble with objective-c memory management, sorry)</p> <p>Now I'm creating the variable without static keyword on the base class, and using extern keyword to reach in the subclasses, and does it work.</p> <p>With static keyword it's invisible from derived classes...</p> http://stackoverflow.com/questions/284321/hidden-uinavigationcontroller-inside-uitabbarcontroller/846071#846071 1 Answer by Nucc for Hidden UINavigationController inside UITabBarController Nucc 2009-05-10T20:46:59Z 2009-05-10T20:46:59Z <p>Here is a <a href="http://developer.apple.com/iphone/library/featuredarticles/ViewControllerPGforiPhoneOS/CombiningToolbarandNavigationControllers/CombiningToolbarandNavigationControllers.html#//apple%5Fref/doc/uid/TP40007457-CH8-SW1" rel="nofollow">link</a> from developer.apple.com where describe how to implement:</p> http://stackoverflow.com/questions/961769/objective-c-static-instance/961815#961815 Comment by Nucc on Objective-c static instance Nucc 2009-06-07T12:59:54Z 2009-06-07T12:59:54Z 1. In the open method it is allocated by the API I don't wanna use singleton, because it's not a typical singleton case. There will be more derived classes, and I just want to use the same database connection in all classes. (Thread safe be my problem..) So I open the connection in the beginning of the application, and close when the program terminates. Thanks for the links...