ios - access the NSData downloaded with SDWebImage -


My request sends a picture (base 64) with a timestamp per request and I integrate SDWBI image into my app , I want to know how to access raw NSDT should know that SDWebImage meets

  [imageView setImageWithURL: [NSURL URLWithString: [NSString stringWithFormat: @ ""]]];  

In this way I can isolate the text from the image

< P> You can use this method,

[UIImage sd_imageWithData: [NSData dataWithContentOfURL: [NSURL URLWithString: urlStr]];


Comments

Popular posts from this blog

sqlite3 - UPDATE a table from the SELECT of another one -

c# - Showing a SelectedItem's Property -

javascript - Render HTML after each iteration in loop -