Jeff Lacey

Results 11 comments of Jeff Lacey

Adding another @discussion for the second line (desired to be outside the @warning block) worked for me.

@mralghazali Yes, I found that recently on my own project and added this to updateVerticalScrollIndicator: ``` CGFloat divideByZeroOffset = 0.0f; if (contentSize.height == collectionViewFrame.size.height) { divideByZeroOffset = 1.0f; } CGFloat...

@mralghazali See if this PR helps. https://github.com/mutualmobile/MMSpreadsheetView/pull/18

@twentyseven I was able to duplicate the problem, but will need more time to troubleshoot it.

@mhomam If you need a quick solution, modify the library and expose the underlying UICollectionViews as readonly properties so you can call `scrollToItemAtIndexPath:atScrollPosition:animated:` on the collectionView(s) you want to scroll....

Rafael, I haven’t seen that before. Are you sure you don’t have more than 1 spreadsheet view being added to the popup? This is just a group of UICollectionViews so...

Is initSpreadSheetView being called more then once? Try adding NSLog(@"%s", **PRETTY_FUNCTION**); at the top of the function and bring it up a few times (looks like it's a view inside...

Did you try open and closing self.viewProdutoEmProdutos several times so see if the initializer is getting called more than once? From what you've shown, I don't see a problem. You...

@ITDebicki Are you saying this is a UICollectionView issue or something in @sidan 's cell implementation? Perhaps needing to check or destroy the cell's subviews in prepareForReuse?

I think you could do that with a standard UICollectionView.