vote up 0 vote down star
1

Hi, In my code, there is an memory leak, when the Keyboard appears for the first time when I am about to enter values in the UITextField. Can someone please give me some idea about this.

In the Interface File

IBOutlet UITextField *userEmail; 

@property (nonatomic, retain) IBOutlet UITextField *userEmail;

Implementation File

@synthesize userEmail; 

- (void)dealloc 
{ 
  [userEmail release]; 
} 

- (void)viewDidUnload 
{ 
  self.userEmail = nil; 
} 

-(IBAction) emailOver:(id)sender{ 
  [sender resignFirstResponder]; 
}

In the one of the functions NSLog(@"User Email: %@",[userEmail text]); Memory Leak occurs when the keyboard appears for the first time Do I have implement UITextFieldDelegate? Thanks

flag

70% accept rate
1  
As always, show your code, please. – Sixten Otto Nov 7 at 1:16
In the Interface File IBOutlet UITextField *userEmail; @property (nonatomic, retain) IBOutlet UITextField *userEmail; Implementation File @synthesize userEmail; - (void)dealloc { [userEmail release]; } - (void)viewDidUnload { self.userEmail = nil; } -(IBAction) emailOver:(id)sender{ [sender resignFirstResponder]; } In the one of the functions NSLog(@"User Email: %@",[userEmail text]); Memory Leak occurs when the keyboard appears for the first time Do I have implement UITextFieldDelegate? Thanks – Steve Nov 7 at 1:31
Steve, you should edit your original post instead. Putting code in a comment makes it very difficult to read. – Shaggy Frog Nov 7 at 1:41
Hi, I have edited the original question :) Sorry about that – Steve Nov 7 at 1:44

2 Answers

vote up 0 vote down

One problem is that your dealloc method is missing the MANDATORY [super dealloc] line.

- (void)dealloc 
{ 
  [userEmail release];
  [super dealloc]; 
}
link|flag
vote up 0 vote down

You don't need IBOutlet defined twice. One or the other should do.

UITextField *userEmail; 

@property (nonatomic, retain) IBOutlet UITextField *userEmail;

I don't see anything else in your code that would cause a problem. What other methods do you have in your @implementation file.

link|flag

Your Answer

Get an OpenID
or

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