iPhone + stringWithUTF8String + memory leaks
03:05 23 Dec 2009

I am using following code in my application to read the string value from database:

objPlayer.playerName = [NSString stringWithUTF8String:(char *)sqlite3_column_text(selectstmt, 2)];

When I run the Instruments to find memory leaks it gives me NSCFString leaks at above line.

What should I do?

iphone memory memory-leaks