Hi,
I have code snippet,
which is like this...
#import <sqlite3.h>
@interface DatabaseClass : NSObject {
sqlite3 *database;
}
@property ( nonatomic, retain ) database;//////this//////
@end
In the implementation file;
#import "DatabaseClass.h"
@implementation DatabaseClass
@synthesize database;//////this///////
@end
My question is can I do this(commented things). And If not what is the work arround?