Fix typos in the README file (thanks Laurent Etiemble)

This commit is contained in:
Olivier Poitrey 2010-06-11 14:40:44 +02:00
parent 1cae0c4021
commit 8cc6acb502
1 changed files with 2 additions and 2 deletions

View File

@ -111,9 +111,9 @@ Here is a simple example of how to use SDWebImageManager:
}
Your class will have to implement the SDWebImageManagerDelegate protocol, and to implement the
imageHelper:didFinishWithImage: method from this protocol:
webImageManager:didFinishWithImage: method from this protocol:
- (void)imageHelper:(SDWebImageManager *)imageHelper didFinishWithImage:(UIImage *)image
- (void)webImageManager:(SDWebImageManager *)imageManager didFinishWithImage:(UIImage *)image
{
// Do something with the downloaded image
}