Since you're using a C array, and not an objective-C NSArray, I can already see that there's going to be an issue. Any time you type something like @"This", you are creating an NSString object which cannot be "inserted" directly into a C array. Out of curiosity, how to do you declare your array (the type, etc.)? At any rate, you're going to have to either define the array as type const char and just insert UTF8 arrays (and convert them to NSStrings when necessary), or use an NSArray and keep the NSString.
|