Hello I do not fully understand the autorelease function call in obj-C.
@interface A{
id obj;
}
@implementation A
-(void)myMethod;
{
obj = [BaseObj newObj]; //where newObj is a method like :[[[BaseObj alloc]init]autorelease];
}
-(void)anotherMehtod;
{
[obj someMeth]; //this sometimes gives me EXC_BAD_ACCESS
}
@end
So to solve this I put a retain. Now do I need to release this object manually if i retain it?
If you are the owner of an object - is your responsibility to release it.
You become owner of an object if you've done at least one of the following:
alloc
retain
copy
For more details read Object Ownership and Disposal