Iphone - UITextView Memory-leak
- by Raphael Pinto
I have a memory leak when i use a UITextView but I don't understand why :
UITextView *textView = [[UITextView alloc] initWithFrame:CGRectMake(20, 160, 280, 150)];
textView.text = @"Hello World";
textView.editable = FALSE;
[self.view addSubview:textView];
[textView release];
Is someone could help me? :S