Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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];

enter image description here

enter image description here

share|improve this question

1 Answer

Try reading the string this way and see if any change occurs.

char* example = (char *)sqlite3_column_text(compiledStatement, 1);                                

label.text = [NSString stringWithFormat:@"%@",example];
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.