I have taken char data into database into array. now i want to convert that data into string.
how can i convert array data into NSString.
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.
If you have a
const char *instance, you can use theNSStringmethod+ stringWithCString:encoding:. For example:To put that into an
NSArray*, you might do the following: