Hermes Pique
Hermes Pique
Hi @virajrch. I might give this a look next week. In case someone else wants to give it a go before that, HPReorderTableView must implement `numberOfSectionsInTableView:` to display multiple sections....
#12 appears to address this. Have you tried it?
Thanks @dozel. Can you provide a sample project with the error?
Thanks @dozel. The problem is not the subclass, but making the table view its own data source. Essentially, the `tableView:cellForRowAtIndexPath:` swizzle in HPReorderTableView (which is responsible for setting the empty...
If there's a reason, please consider adding a comment. If not it looks arbitrary, and prone to accidental changes.
Let me know if there's anything I can do to help. Yes, more examples would be nice to simplify testing. And maybe a unit test project.
@roiholtzman I'm not actively supporting this fork. Feel free to take over!
That _works_ like, not looks like.
It was useful to me at least (using @trilorez's fork). So thanks again!
I have no idea why the above happens but this could be a possible workaround: ``` - (void)scrollToVisibleCaretAnimated:(BOOL)animated { UITextPosition *selectedTextRangeEnd = self.selectedTextRange.end; CGRect rect = [self caretRectForPosition:selectedTextRangeEnd]; UITextPosition *givenCaretPosition...