My app crashes on the line:
NSString *test=[NSString stringWithXMLTag:@"name" andValue:@"NameTest"];
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.
It’s likely that you aren’t including the NSString+stringWithXMLTag.h file. Consequently, your app will not recognize the
stringWithXMLTag:andValueselector.Add this to the top of your file that receives the crash:
This, of course, assumes you have that file in your project (and any of its dependencies).