It crashes only one time and then it works normally.
Here is the project:
http://www.mediafire.com/?p0dy7g5ozkl69jt
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You got a memory issue trying to access a released
NSURLin yourGetXMLclass…There:
To diagnose these, make use of NSZombiesEnabled, explained there.
To fix your crash, make sure you
retainorcopyyour url in your GetXML class :and to avoid a memory leak, make sure your release that URL
Untested code, but should work… You should re-read Apple documentation about memory management… 😉