Heres my analyzer leak...
I need to return and stop execution of the rest of my method, as I'm stopping the user as hes enter some text fields incorrectly.
Heres my analyzer leak...
I need to return and stop execution of the rest of my method, as I'm stopping the user as hes enter some text fields incorrectly.
By line 442 I'm guessing that that is the alert
value that you set after the WarningMessage. Notice that you've not released it. After the show
try:
[alert show];
[alert autorelease];
return;