FROM : Calum Robinson
DATE : Sun Jan 13 16:53:52 2002
On Sunday, January 13, 2002, at 06:14 am, cocoa-dev-
<email_removed> wrote:
> theAppList = [NSMutableArray array];
theAppList will be autoreleased (your object did not alloc it, the
NSMutableArray class did). You could either:
[theAppList retain];
or
theAppList = [[NSMutableArray alloc] init];
DATE : Sun Jan 13 16:53:52 2002
On Sunday, January 13, 2002, at 06:14 am, cocoa-dev-
<email_removed> wrote:
> theAppList = [NSMutableArray array];
theAppList will be autoreleased (your object did not alloc it, the
NSMutableArray class did). You could either:
[theAppList retain];
or
theAppList = [[NSMutableArray alloc] init];
| Related mails | Author | Date |
|---|---|---|
| Josh M. Hurd | Jan 13, 05:05 | |
| Doug Brown | Jan 13, 08:30 | |
| Calum Robinson | Jan 13, 16:53 |






Cocoa mail archive

