如何在啓動我的應用程序時在啓動tableView期間刪除行? 我tryed加activityIndicator,但他不幫我。在啓動tableView時刪除行查看
可能是我在某種程度上設置不正確UIView還是需要使用別的東西?
可能是需要的代碼activityIndicator:
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()
}
設置的tableview到UITableViewCellSeparatorStyleNone的separatorStyle。 –
,因爲我沒有想過))謝謝:) –