gringoireDM / LNZTreeView

A swift TreeView
MIT License
236 stars 47 forks source link

Is it possible to get the TableView #22

Open rizwan95 opened 5 years ago

rizwan95 commented 5 years ago

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

rmalmoe commented 5 years ago

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.

rizwan95 commented 5 years ago

Even I am doing the same.