Skip to content
New issue

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

A bug after dealloc OLImageView and solution #37

Open
bestvista opened this issue Oct 23, 2013 · 1 comment
Open

A bug after dealloc OLImageView and solution #37

bestvista opened this issue Oct 23, 2013 · 1 comment

Comments

@bestvista
Copy link

  • (void)displayLayer:(CALayer *)layer
    {
    if (!self.animatedImage || [self.animatedImage.images count] == 0) {
    return;
    }
    layer.contents = (__bridge id)([ [self.animatedImage.images objectAtIndex:self.currentFrameIndex] CGImage]);
    }

when image in self.animatedImage still a NSNull object, cause crash! May change to :

  • (void)displayLayer:(CALayer *)layer
    {
    if (!self.animatedImage || [self.animatedImage.images count] == 0) {
    return;
    }
    id image = [self.animatedImage.images objectAtIndex:self.currentFrameIndex];
    if ([image isKindOfClass:[UIImage class]]) {
    layer.contents = (__bridge id)([image CGImage]);
    }
    }
@Eeyore741
Copy link

+1

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants