'How to set _setSupportsPointerDragScrolling: on a tableView in Swift?
In a table view
@IBOutlet var tableView: UITableView!
You can "turn on" finger scrolling in a Catalyst app using ...
- [UIScrollView _setSupportsPointerDragScrolling:]
on a table view ...
tableView.perform(
NSSelectorFromString("_setSupportsPointerDragScrolling:"),
with: NSNumber(booleanLiteral: true))
that compiles and runs but does not 'turn on' the finger scrolling.
How to call this API in Swift and set it to true?
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|
