如何解决保存添加的表格视图单元格
我将如何保存已添加到表格视图中的单元格,因此当应用程序终止并重新启动时,它们仍将存在。还是有更简单的方法来实现这一目标?
我正在使用警报供用户输入信息,然后将其添加到表视图单元格中,我只需要它来保存单元格以便重新启动。因此它们仍然可见
struct MyLink: Codable{
var nickname: String
var url: String
}
class TableView: UIViewController {
let tableView: UITableView = {
let tableView = UITableView()
tableView.tableFooterView = UIView(frame: .zero)
tableView.separatorStyle = .none
tableView.allowsSelection = true
tableView.backgroundColor = .clear
tableView.translatesAutoresizingMaskIntoConstraints = false
return tableView
}()
var nickNameString: String = ""
var urlString: String = ""
var links: [MyLink] = []
override func viewDidLoad() {
super.viewDidLoad()
let add = UIBarButtonItem(image: UIImage(systemName: "plus"),style: .done,target: self,action: #selector(addLink))
navigationItem.rightBarButtonItems = [add]
constraints()
tableView.dataSource = self
tableView.delegate = self
tableView.register(TableViewCell.self,forCellReuseIdentifier: "TVC")
self.tableView.separatorColor = .clear
}
func constraints(){
view.addSubview(tableView)
NSLayoutConstraint.activate([
tableView.topAnchor.constraint(equalTo: view.topAnchor,constant: 0),tableView.trailingAnchor.constraint(equalTo: view.trailingAnchor,tableView.leadingAnchor.constraint(equalTo: view.leadingAnchor,tableView.bottomAnchor.constraint(equalTo: view.bottomAnchor,constant: 0)
])
}
@objc func addLink(){
var txtNickName: UITextField?
var txtUrl: UITextField?
let alert = UIAlertController(title: "Add Link",message: nil,preferredStyle: .alert)
let action = UIAlertAction(title: "Add",style: .default) { (login) in
if let nickname = txtNickName?.text {
self.nickNameString = nickname
} else {}
if let url = txtUrl?.text {
self.urlString = url
} else {}
let addLink = MyLink(nickname: self.nickNameString,url: self.urlString)
let index = 0
self.links.insert(addLink,at: index)
let indexPath = IndexPath(row: index,section: 0)
self.tableView.insertRows(at: [indexPath],with: .fade)
}
alert.addTextField { (nickname) in
txtNickName = nickname
txtNickName?.placeholder = "Enter Nickname"
}
alert.addTextField { (url) in
txtUrl = url
txtUrl?.placeholder = "Enter Url"
}
alert.addAction(action)
self.present(alert,animated: true,completion: nil)
}
}
extension TableView: UITableViewDelegate,UITableViewDataSource {
func tableView(_ tableView: UITableView,numberOfRowsInSection section: Int) -> Int {
return links.count
}
func tableView(_ tableView: UITableView,heightForRowAt indexPath: IndexPath) -> CGFloat {
return 100
}
func tableView(_ tableView: UITableView,didSelectRowAt indexPath: IndexPath) {
}
func tableView(_ tableView: UITableView,willdisplay cell: UITableViewCell,forRowAt indexPath: IndexPath) {
}
func tableView(_ tableView: UITableView,commit editingStyle: UITableViewCell.EditingStyle,forRowAt indexPath: IndexPath) {
guard editingStyle == .delete else {return}
links.remove(at: indexPath.row)
tableView.deleteRows(at: [indexPath],with: .automatic)
}
func tableView(_ tableView: UITableView,cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell : TableViewCell = tableView.dequeueReusableCell(withIdentifier: "TVC",for: indexPath) as! TableViewCell
cell.selectionStyle = .none
let link = links[indexPath.row]
cell.nameLabel.text = link.nickname
cell.urlLabel.text = link.url
return cell
}
}
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。