You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on May 26, 2019. It is now read-only.
When I do my long press, the entire screen "jumps" and then everything works like normal. It's very jarring visually. I only implemented two of your methods so far:
When I do my long press, the entire screen "jumps" and then everything works like normal. It's very jarring visually. I only implemented two of your methods so far:
// MARK: - RAReorderableLayoutDataSource
extension HomeScreenViewController: RAReorderableLayoutDataSource {
func collectionView(collectionView: UICollectionView, reorderingItemAlphaInSection section: Int) -> CGFloat {
return 0.3
}
}
// MARK: - RAReorderableLayoutDelegate
extension HomeScreenViewController: RAReorderableLayoutDelegate {
func collectionView(collectionView: UICollectionView, atIndexPath: NSIndexPath, didMoveToIndexPath toIndexPath: NSIndexPath) {
let item = collectionData.removeAtIndex(atIndexPath.item)
}
The text was updated successfully, but these errors were encountered: