Hello all,
I am coding in cocoa for iPhone simulator.
I used..
for(int i = 0 ; i < 5 ; i++)
{
[menuList addObject: [NSDictionary dictionaryWithObjectsAndKeys:
@"sdf",kTitleKey,
@"sfs",kExplainKey,
@"dgd",kWebKey,
@"sdfsf",kPublishDateKey,
nil]];
}
Now when i run code then i get console warning:
NSAutoreleaseNoPool(): Object 0x10979c0 of class NSCFDictionary autoreleased with no pool in place - just leaking..
It create problem for me some time.
Thank you..
I am coding in cocoa for iPhone simulator.
I used..
for(int i = 0 ; i < 5 ; i++)
{
[menuList addObject: [NSDictionary dictionaryWithObjectsAndKeys:
@"sdf",kTitleKey,
@"sfs",kExplainKey,
@"dgd",kWebKey,
@"sdfsf",kPublishDateKey,
nil]];
}
Now when i run code then i get console warning:
NSAutoreleaseNoPool(): Object 0x10979c0 of class NSCFDictionary autoreleased with no pool in place - just leaking..
It create problem for me some time.
Thank you..