objective c - iPhone NSURLConnection initialization problem -


what difference between 2 lines, in different apps first 1 seems work , have problems second one; , 1 should choose on another? app receive , send data webservice.

nsurlconnection *theconnection = [[nsurlconnection alloc] initwithrequest:therequest delegate:self];  nsurlconnection *theconnection = [nsurlconnection connectionwithrequest:request delegate:self]; 

and should release connection object, after every didfinishloading? doesn't take time on every request connect?

the first 1 instance of nsurlconnection take ownership of object, have responsibility , hence must release it. details on ownership reference.

the second 1 auto-released object dont need release it. released automatically when auto-release pool drained.


Comments

Popular posts from this blog

linux - Using a Cron Job to check if my mod_wsgi / apache server is running and restart -

actionscript 3 - TweenLite does not work with object -

jQuery Ajax Render Fragments OR Whole Page -