BOOL letBackgroundLinger doesn't work
I have set letBackgroundLinger to NO, but when my finger left, the background Color remains.
Hi ChenZhongPu.
Could you be more specific, maybe show some code or anything else that may be relevant?
Thank you
When a tap is recorded, a background fade fades in. If it is set to linger, it does not get removed until setSelected:NO is called. So when a user taps multiple cells simultaneously, setSelected:NO does not get called by the OS and the background does not fade away as it should.
This is a known bug and I'm not sure how to fix it yet. Will update when I learn more.
Hi ChenZhongPu,
Your issue is because backgroundColorFadeLayer is not instantiated, cause you don't execute method called setupBFPaperTableViewCell. This method is only called on init, you should call BFPaperTableViewCell awakeFromNib, in your Cell override.