devMoxie

Results 4 comments of devMoxie

Like the OP, I too may need to get a hook as to when a cell will end displaying similar to [collectionView(_:didEndDisplaying:forItemAt:)](https://developer.apple.com/documentation/uikit/uicollectionviewdelegate/1618006-collectionview). Is this possible?

Just curious if anyone has a workaround for how I can implement [collectionView(_:didEndDisplaying:forItemAt:)](https://developer.apple.com/documentation/uikit/uicollectionviewdelegate/1618006-collectionview) and [collectionView(_:didEndDisplayingSupplementaryView:forElementOfKind:at:)](https://developer.apple.com/documentation/uikit/uicollectionviewdelegate/1618036-collectionview) for `JTACMonthView` cells?

No need to apologize! Here's what I've tried so far to no avail: ```swift extension JTACMonthViewDelegate { func calendar(_ calendar: JTACMonthView, didEndDisplaying cell: JTACDayCell?, indexPath: IndexPath) { print(#function) } }...

@tech4him1 I disagree that it isn't actually causing any problems. These messages adds 140+ lines to the Netlify deploy log file which does make it more difficult to debug. Not...