-
Notifications
You must be signed in to change notification settings - Fork 207
Open
Description
I'm getting a crash force unwrapping a nil value testing on iOS 15 Beta but on iPad only. iPhone seems to work fine. The crash occurs here
// It's okay to force-unwrap here because we pass a non-empty array.
return verticalAlignmentAxisForLine(with: layoutAttributesInLine)!
the cause being on iPad
super.layoutAttributesForElements called by layoutAttributes(forItemsInLineWith: currentLayoutAttributes) returns nil (and therefore an empty array) whereas on iPhone this returns the layout attributes of the cell. The verticalAlignmentAxisForLine func returns nil if the attributes array is empty therefore causing the force unwrap to crash.
guard let firstAttribute = layoutAttributes.first else {
return nil
}
Whilst this issue might be fixed in a subsequent beta release I think it exposes a valid issue with the force unwrap. Perhaps a default alignment should be returned by verticalAlignmentAxisForLine instead of nil?
guard let firstAttribute = layoutAttributes.first else {
return AlignmentAxis(alignment: verticalAlignment, position: 0)
}
CocoaBob, euroboy and ricsantos
Metadata
Metadata
Assignees
Labels
No labels