Iphone: Need release using ASIFormDataRequest
Posted
by
xger86x
on Stack Overflow
See other posts from Stack Overflow
or by xger86x
Published on 2011-01-11T14:48:18Z
Indexed on
2011/01/11
14:53 UTC
Read the original article
Hit count: 195
iphone
|asihttprequest
Hi,
i have one simple question, if i'm using ASIFormDataRequest when i need to release the request object?
NSURL *url = [NSURL URLWithString:@"url"];
ASIFormDataRequest *requestForm = [ASIFormDataRequest requestWithURL:url];
[requestForm addPostValue:[[NSUserDefaults standardUserDefaults] stringForKey:@"user"] forKey:@"user"];
[requestForm setRequestMethod:@"POST"];
[requestForm setDelegate:self];
[requestForm startAsynchronous];
Thanks
© Stack Overflow or respective owner