Martin Rechsteiner

Results 32 comments of Martin Rechsteiner

Hi @vgillestad! Thanks for the report. I'm not 100% if this is the issue, but I'm guessing it's related to the fact that we're reloading the data source while scrolling...

I've been looking a bit more into this lately, but I haven't been able to fix it yet. The reason the jump is happening is because of reloading data. When...

Hi @Myste1. Looks like the documentation is wrong. The items are available under the `visibleItems` property. E.g: ```Swift if let first = pagingViewController.visibleItems.items.first { pagingViewController.select(pagingItem: first) } ``` Regarding the...

Do you have a lot of items in the menu? The `visibleItems` property will only contain the items that are currently on the screen, so that might be the problem...

Thank you for the fix 🙌 And sorry for the delayed review

Hi @uzman! This is currently not possible, but I've been thinking about adding support for it. I can't really provide an ETA at the moment.

Hi @gvn-technology! Unfortunately, this doesn't seem to be possible at the moment. I'm looking into doing some changes that would make this possible, but might take some time before that...

Ah managed to get it working 😅 Pushed to the `infinite-looping` branch. You can check out the InfiniteLooping example for implementation details. I still need to do a bit more...

Hi @rocxteady! This isn't possible at the moment, but you can probably achieve it by implementing the [size delegate](https://github.com/rechsteiner/Parchment/blob/cc6b08b1747d0c75cb35fc907591a5e259bd0a32/Example/Examples/Header/HeaderViewController.swift). I agree that it would be nice to have build-in support...

Hi @pajtimid! This is not supported at the moment. I'm very open for adding support for this, but it will probably take some time before I have time to do...