LNZTreeView
LNZTreeView copied to clipboard
Is it possible to get the TableView
Is it possible to access the tableView as a property? because third parties like FloatingPanel require the scroll view of a view inorder to track the scrolls, so any solution for it?
Floatingpanel link :
https://github.com/SCENEE/FloatingPanel
Unfortunately I don't think there is. I just modified the LNZTreeView.swift directly from the Pod. public lazy var tableView: UITableView! = { return UITableView(frame: frame, style: .plain) }() Added a public in front of the table view and it worked. Not entirely sure why that was not included as is. Makes it hard to customize anything.
Even I am doing the same.