I have a view controller subclass of UIWebView. If I release that object is it necessary to nil the object?
Thanks.
I have a view controller subclass of UIWebView . If I release that object
Share
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.
That will depend on how you use the pointer to the
UIWebViewsubclass. If thisreleaseis indealloc, then you don’t need to set it tonil, however if youreleaseit elsewhere I would set it tonil.