I'm using ARC , each time I call the below code . I find the "Live Bytes" will increase a little every time .there must have memory leak here.
char* example = (char *)sqlite3_column_text(compiledStatement, 1);
label.text = [NSString stringWithUTF8String:example];
but if I do in the way below, the memory will keep stable on one number of bytes forever. but the label.text content is not the exact word I want , it's corrupt like "&#(&(*@#)#@$".
char* example = (char *)sqlite3_column_text(compiledStatement, 1);
label.text = [NSString stringWithFormat:@"%s",example];

