This code is causing the error:
- (NSString *)cachedTwitterOAuthDataForUsername:(NSString *)username
{
NSString *cache = [NSString stringWithString:[settings objectForKey:@"twitterCache"]];
if (cache.length > 0)
{
twitterLoginShown = YES;
return cache;
}
return @" ";
}
I can't even step through each line in this block of code for some reason. I'm not exactly sure what the error is asking.
The error tells that [settings objectForKey:@"twitterCache"] returns nil. Check if settings contains a value for the key @"twitterCache".
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With