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

Memory leak after exiting view controller #7

Open
digitalartworks opened this issue Feb 10, 2016 · 0 comments
Open

Memory leak after exiting view controller #7

digitalartworks opened this issue Feb 10, 2016 · 0 comments

Comments

@digitalartworks
Copy link

Hi,

Just've found a issue with memory leak after exit segue in View Controller with YLGIFImageView. Image cached data remains and creates new allocation with every segue to the View Controler.

My solution

In YLGIFImage.swift:

    func clearData() {
        frameImages.removeAll()
        _cgImgSource = nil
    }

In YLImageView.swift:

    func clearImages() {
        self.animatedImage?.clearData()
        self.currentFrame = nil
        self.image = nil
    }

and then I can release memory with:
nameOfYLImageView.clearImages()

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

1 participant