-
Notifications
You must be signed in to change notification settings - Fork 814
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
isSelected not accessible nor possible to be overriden #923
Comments
I made it unavailable in favor of Many people are using .isSelected and are getting the wrong value sometimes because of outofSync. |
I've been thinking about the issue and could not find the time to investigate it further. Just need some time to investigate things further, next week I'll come up with something and I'll update this issue Thank you for your time |
Just ran headlong into this. I am using |
@JettF , I just refactored the name of the EDIT: Being my case that I update the cell property by hand and do not depend on isSelected from CollectionViewCell |
@JettF run into the same issue. Did you figure out any solution? |
Ok, since many people still want this, i will revert my original code, and try to implement another solution |
In my case going for cellState property was totally fine. In the end these weren't to big adjustments. Thanks @patchthecode |
I use For now I had to delete |
@agordeev If you are using it for the didSet property, this is valid. I will put a warning there. Because your concern is valid. |
@agordeev can you open a new issue for this? |
IMPORTANT - BEFORE CREATING YOUR ISSUE PLEASE READ THE FOLLOWING:
7.1.6
yes
On version 7.1.6 the isSelected property of UICollectionViewCell is being made unavailable: c632d01#diff-e3c6534332137dabc366cc453e6665e0
This breaks my custom implementation since I have a custom state when the user selects a cell. What are the reasons to disallow overriding of a property that's not even specific of JTAppleCell?
This clearly breaks expected behavior from parent classes
Maybe there's another way to do this changes without prohibiting the use of isSelected...
The text was updated successfully, but these errors were encountered: