-
Notifications
You must be signed in to change notification settings - Fork 61
Open
Description
Windless Version: 4.1.0
Xcode Version: 10.1
Installation Method: Cocoapods
There are no problems with the constraints. The button click's code is as follows
click += 1
if click % 2 == 0 {
self.mainTableView.windless.start()
} else {
self.mainTableView.windless.end()
}
Here's the UITableViewDataSource
func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return self.itemCount
}
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCell(withIdentifier: randomCell.identifier, for: indexPath)
return cell
}
func tableView(_ tableView: UITableView, heightForRowAt indexPath: IndexPath) -> CGFloat {
return 200
}
Metadata
Metadata
Assignees
Labels
No labels