mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-12-22 14:20:20 +00:00
Fix using UIActivityIndicatorView provided in view block (#2522)
This commit is contained in:
committed by
GitHub
parent
8e6f842b8d
commit
58e9c807b9
@@ -55,7 +55,9 @@ final class ViewController: ASViewController, ASTableDataSource, ASTableDelegate
|
||||
let rowCount = self.tableNode(tableNode, numberOfRowsInSection: 0)
|
||||
|
||||
if state.fetchingMore && indexPath.row == rowCount - 1 {
|
||||
return TailLoadingCellNode()
|
||||
let node = TailLoadingCellNode()
|
||||
node.style.height = ASDimensionMake(44.0)
|
||||
return node;
|
||||
}
|
||||
|
||||
let node = ASTextCellNode()
|
||||
|
||||
Reference in New Issue
Block a user