Dima
Dima
If you don't have a `UIBarButtonItem` that you can use, you can actually just present the `UIDocumentInteractionController` using `- (BOOL)presentOpenInMenuFromRect:(CGRect)rect inView:(UIView *)view animated:(BOOL)animated`. Pass in `CGRectZero` and the `view` of...
I implemented a fix that doesn't require any code changes outside the component https://gist.github.com/3661149 just perform the animation by calling performSelector with a delay of 0.0.
@ying22 : I tried your fix and it does not fix the problem for me. You can test a fix for this problem in the sample project by removing the...
Yep I see it now. Your solution solves the problem. However, it causes the arrow and view to jump very abruptly. Adding that tiny delay on it will cause it...
Couple of comments: 1. If you didn't need horizontal scrolling, this is probably the way I'd recommend as well, as its easy to just reload a section with updated data....
@tarunbhutani any chance you can create a sample project that demonstrates this issue and post a link here so I can take a look?
What about potentially creating a lookup dictionary which maps the view models (or in particular, their diff identifiers) to indexes in the array? We would then need to make sure...
One possible optimization I can see is to update the dictionary lazily when this API is used. The dictionary could be constructed upon first trying to fetch a cell for...
This looks great and more natural than before for sure! So the only discrepancy in behavior now is that when you pop back to the original view, the navigation bar...
@DrWaleedNour hello! I have a question about your usage of IGListKit. Can you take a look at your usage of `performBatchAnimated` and similar methods (if perhaps you're calling the equivalent...