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

Fix ios 9 crash #25

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
use @available check
petropavel13 committed Jul 7, 2018
commit ee7faec96bba28c0f1acd069be4096ab4e1a208c
Original file line number Diff line number Diff line change
@@ -59,10 +59,10 @@ - (NSArray *)layoutAttributesForElementsInRect:(CGRect)rect {
- (UICollectionViewLayoutAttributes *)layoutAttributesForItemAtIndexPath:(NSIndexPath *)indexPath {
UICollectionViewLayoutAttributes* currentItemAttributes;

if (UIDevice.currentDevice.systemVersion.floatValue < 10.0) {
currentItemAttributes = [super layoutAttributesForItemAtIndexPath:indexPath];
} else {
if (@available(iOS 10, *)) {
currentItemAttributes = [[super layoutAttributesForItemAtIndexPath:indexPath] copy];
} else {
currentItemAttributes = [super layoutAttributesForItemAtIndexPath:indexPath];
}

UIEdgeInsets sectionInset = [self evaluatedSectionInsetForItemAtIndex:indexPath.section];