I'm using ARC .
.h file
@property (weak, nonatomic) IBOutlet UILabel *label;
- (IBAction)OnButtonClick:(id)sender;
.m file
- (IBAction)OnButtonClick:(id)sender
{
char *example = "testabcdef";
_label.text = [NSString stringWithFormat:@"%s",example];
}
I find the 'Live bytes' in the instrument grows a little when 'OnButtonClick' called every time , and never drop down, the code like this in my app cause my app to crash after hundreds of calling because of 'received memory warning, and out of memory'.
I'v been confused by this question for 2 month. still don't know why? anybody can help me?
[NSString stringWithUTF8String:]is slightly better, given you aren't really formatting anything. – trojanfoe Feb 12 at 11:20