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?
favoriteSharersdoes 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