Tanguy Helesbeux
Tanguy Helesbeux
Thanks folks, can't wait to test this feature :)
@davidzhao any plans to support Cocoapods? We are also building a library for both pods and SPM but can't embed `LiveKit` in the pod version.
I've seen this commit https://github.com/livekit/client-sdk-swift/commit/d7a68b34af8ab2c5e6312458f75f0795ae9bd862 \o/ Maybe it's too early, but it does not seem to have been pushed to trunk, right? Thanks for working on it (:
After investigation, I added some code to my view controller ``` deinit { self.tableView.dg_removePullToRefresh() } ``` You should add to your README that removing pull to refresh manually if necessary...
Great, even better :) ty !
I updated to 1.0.3 but I still have the same issue. Manually removing the pull to refresh in `deinit` still solves it.
I had the same problem. I took a look at `dg_stopScrollingAnimation`, it appears that `self`is not deallocated but this code deletes all the constraints: ``` removeFromSuperview() superview.insertSubview(self, atIndex: index) ```...
Ok, I did not succeed to make that happen. But I trust you ;) Another clean way to fix this (without updating pod manually or forking it): ``` extension UIScrollView...
Sure !
True, I have to work on this. Thank you