We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hey Nick,
I am not sure whether the implementation that I did is correct or not, the images not being cache every time when I re-run the app.
SingleDiscoverItemTVCell *cell = (SingleDiscoverItemTVCell *)[self.mainTableView dequeueReusableCellWithIdentifier:@"TVCellSingleDiscoverItem"]; if( cell == nil ){ NSArray *nibs = [[NSBundle mainBundle] loadNibNamed:@"SingleDiscoverItemTVCell" owner:(id)self options:nil]; cell = (SingleDiscoverItemTVCell *)nibs[0]; } else { [cell showImagePlaceholder]; [[AsyncImageLoader sharedLoader] cancelLoadingImagesForTarget:cell.mainIV]; } return cell;
cell.m
@property (nonatomic, weak) IBOutlet AsyncImageView *mainIV; self.mainIV.imageURL = [NSURL URLWithString:@"the url"];
The text was updated successfully, but these errors were encountered:
AsyncImageView doesn't currently implement disk caching, so the cache won't survive an app restart.
Sorry, something went wrong.
Got it, thanks Nick :)
No branches or pull requests
Hey Nick,
I am not sure whether the implementation that I did is correct or not, the images not being cache every time when I re-run the app.
cell.m
The text was updated successfully, but these errors were encountered: