Open irzyxa opened 7 years ago
I am using Ra Tree View Controller. It's working far fine in iOS 10 versions, but having alot of scrolling and tapping gestures issues in iOS 11 (Xcode 9.0). Wishing to fix these issues. Moreover, is there any possible to expand only one row at a time? On tapping other row, it will automatically collapse other rows.
I am using these delegates but they are not working good, as I wish to collapse and close all other rows and just expand one row per time.
[_treeView collapseRowForItem:lastSelectedPoint withRowAnimation:RATreeViewRowAnimationNone]; [self treeView:_treeView willCollapseRowForItem:lastSelectedPoint];
By over-riding these delegates, I am trying. They are working very close but in few cases they are not working. Also, fix bugs for iOS 11. Thank you.
Methods willSelectRowForItem and willDeselectRowForItem must return nullable value (you wrote in comments that they can return nil), to have optional value in Swift (Any?)