在引导tableView期间删除行

时间:2017-10-21 09:26:17

标签: ios swift uitableview uiactivityindicatorview

当我启动应用程序时,如何在启动tableView期间删除行? 我尝试添加 activityIndi​​cator ,但他没有帮助我。

可能是我错误地设置 UIView 或需要使用别的东西?

可能需要代码 activityIndi​​cator

private func setLoadingScreen() {

    let width: CGFloat = 30
    let height: CGFloat = 30
    let x = (self.tableView.frame.width / 2) - (width / 2)
    let y = (self.tableView.frame.height / 2) - (height / 2) - (self.navigationController?.navigationBar.frame.height)!
    loadingView.frame = CGRect(x: x, y: y, width: width, height: height)

    self.activityIndicator.activityIndicatorViewStyle = .gray
    self.activityIndicator.frame = CGRect(x: 0, y: 0, width: 30, height: 30)
    self.activityIndicator.startAnimating()

    loadingView.addSubview(self.activityIndicator)

    self.tableView.addSubview(self.loadingView)

}

private func removeLoadingScreen() {

    self.activityIndicator.stopAnimating()

}

AI

3 个答案:

答案 0 :(得分:1)

我想在UITableView上为此创建一个扩展程序:

public extension UITableView {
    /**
    Hides the separators which display when the table view is empty.
     */
    func hideSeparators() {
        guard tableFooterView == nil else { return }
        tableFooterView = UIView()
    }
}

答案 1 :(得分:0)

最简单的解决方案是在加载前将separatorStyle定义的UITableView属性的值设置为UITableViewCellSeparatorStyleNone

self.tableView.separatorStyle = .none

加载完成后,您可以将其设置回UITableViewCellSeparatorStyleSingleLine

self.tableView.separatorStyle = .singleLine

Apple Reference

答案 2 :(得分:0)

设置空UITableView页脚。在这种情况下,您不必切换回separatorStyle。

self.tableView.tableFooterView = UIView()

或将UITableView分隔符样式设置为.none

self.tableView.separatorStyle = .none