Victor Shamanov

Results 18 comments of Victor Shamanov

Try this: ``` objc - (BOOL)collectionView:(UICollectionView *)collectionView canMoveItemAtIndexPath:(NSIndexPath *)indexPath { if (indexPath.row >= [self.items[indexPath.section] count]) { return NO; } return YES; } ```

iOS simulator doesn't reuse cells. I think the bug is hidden here.

Alright, it's a little bit tricky, but works for me: The point is calling `reloadData` after some amount of time. ``` objc [collectionView performSelector:@selector(reloadData) withObject:nil afterDelay:0.3]; ``` I don't know,...

Nope, unfortunately it doesn't help. Exactly same behaviour.

@lukescott Also, support of moving cells between two UICollectionViews will be great!

Hey @95krasovsky, You can change the size of the collection view, so it doesn't go under the ChatInputView and adjust scroll indicator insets accordingly.

Hey @Rouix, thanks for bringing this up. I think it'd be a great addition to Chatto. Is that something you might be interested working on?

Hey @brandtdaniels, On which iOS version do you see this issue?

As you've mentioned in your StackOverflow post, I think it's probably related to the navigation and tab bar. Can you provide some minimal reproducible example so we can help you...

@brandtdaniels, Sorry, I missed that it is internal. Try `collectionView.verticalScrollIndicatorInsets = ` instead