To answer my own question, for the good of all peoplekind :

Instead of using the httpFetcher, it's easier, although a little less
elegant as far as progress bars, etc to do something like this:


                        NSString *imageURL = [imageContent URLString];
                        NSURL *nsURL = [[NSURL alloc] initWithString:imageURL];

                        NSData *receivedData = [NSData 
dataWithContentsOfURL:nsURL];
                        UIImage *img = [[UIImage alloc] 
initWithData:receivedData];

                        [mThumbnails addImage:img];

                        [nsURL release];

-- 
You received this message because you are subscribed to the Google Groups 
"Google Picasa Web Albums API" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/google-picasa-data-api?hl=en.

Reply via email to