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
I have custom transition and then I use this lib I have 2-3 sec slowing of transition.
The text was updated successfully, but these errors were encountered:
Fixed it
(void)setImage:(UIImage *)image {
[super setImage:image]; [blurImages_ removeAllObjects];
dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_BACKGROUND, 0), ^{ [self prepareForBlurImages]; });
}
Sorry, something went wrong.
@bizibizi thanks man! just what I needed for same problem I had
void)setImage:(UIImage *)image { [super setImage:image]; [blurImages_ removeAllObjects]; dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_BACKGROUND, 0), ^{ [self prepareForBlurImages]; });
when i set this code. it gives error for line
UIImage *image = blurImages_[0];
arrayindexoutofbound for empty array. what should i do for that? thanks
No branches or pull requests
I have custom transition and then I use this lib I have 2-3 sec slowing of transition.
The text was updated successfully, but these errors were encountered: