NSArray *favoriteSharers=[NSArray arrayWithObjects:@"SHKMail", @"SHKTWitter",         @"SHKFacebook", nil];

On Simulator, I step through the code and favoriteSharers array contains three strings of SHKMail, SHKTWitter, and SHKFAcebook.

However, on device, after I step through this line code, the favoriteSharers contains 3 items but all junk, undefined strings.. How odd.

How odd! How can on device this would happen?? it wouldn't assign the 3 literal strings to the NSArray?

link|improve this question

62% accept rate
Have you tried assigning one of the strings in your array to a NSString object and see if the NSString object contains your string? – bschultz Feb 7 at 23:24
1  
If favoriteSharers does not have a live pointer to it it will be deallocated the next time the runloop runs. Please provide a little more information about when the line is executed and when you observe that it is invalid. – Zaph Feb 7 at 23:46
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.