Thanks,
After some trial and error, I've got this working almost perfectly.
I'm working in a tab-bar app, and one of the tabs launches the photo
gallery. I'm essentially using the ALThumbs3 example from crigor
(found at
http://github.com/crigor/three20_examples) to load my
gallery from Flickr. There's two issues I'm having, and I haven't
really been able to solve them.
1. I get two warning messages, and while I've tried googling it, I
haven't really been able to figure it out:
// Parse the JSON data that we retrieved from the server.
NSDictionary *json = [responseBody JSONValue];
[responseBody release];
///////////WARNING: NSString May Not Respond to '-
JSONValue'//////////
and
NSString *url = [@"
http://api.flickr.com/services/rest/"
stringByAppendingFormat:@"?%@", [parameters gtm_httpArgumentsString]];
NSLog(@"url: %@", url);
////////WARNING: NSDictionary may not respond to '-
gtm_http_ArgumentsString'///////////
I'm wondering if this is related to my second issue, which is that:
2. Flickr has 61 pictures, but only 45 will display. It says "45 of
61" and when you click "Load More Pics" the activity indicator just
keeps spinning, as does navigating directly to the photo by
"flicking."
Other than that, everything's working great. Thanks for the advice and
putting me on the right path. Any further help much appreciated.