我是Swift的初学者。我已经用尽了所有的尝试和错误,需要帮助!
我正在使用带有自定义单元格的UITableView创建记分板项目,该自定义单元格包含UILabel和UIButton。按下按钮后,UILabel会增加1,以为播放器模拟一个点。我在将积分保存到UILabel时遇到了麻烦,因此每次打开该应用程序时,该播放器的积分都会保留。我尝试使用UserDefaults,结构和委托,但没有任何运气...我可能做错了。我只需要知道正确的方法是什么。
注意:我能够从UIAlertController成功保存播放器名称,因此当我打开应用程序时,除非删除它们,否则名称仍然存在,但是没有运气为每个名称本身保存分数,它们仍然保持为“ 0”。
当我关闭然后打开应用程序时,它应该看起来像这样,但是只有在打开应用程序时它才这样做:
Scoreboard UITableView - Screenshot
这是ViewController代码:
import UIKit
class ViewController: UIViewController, UITableViewDataSource, UITableViewDelegate {
var items = [String]()
@IBOutlet weak var listTableView: UITableView!
@IBAction func addItem(_ sender: AnyObject) {
alert()
}
override func viewDidLoad() {
super.viewDidLoad()
listTableView.dataSource = self
self.items = UserDefaults.standard.stringArray(forKey:"items") ?? [String]()
}
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCell(withIdentifier: "cell") as! PointsCell
cell.textLabel?.text = items[indexPath.row]
return cell
}
func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return items.count
}
func saveData() {
UserDefaults.standard.set(items, forKey: "items")
}
func alert(){
let alert = UIAlertController(title: "Add Player", message: "", preferredStyle: .alert)
alert.addTextField{
(textfield) in
textfield.placeholder = " Enter Player Name "
}
let add = UIAlertAction(title: "Add", style: .default)
{
(action) in guard let textfield = alert.textFields?.first else {return}
if let newText = textfield.text
{
self.items.append(newText)
self.saveData()
let indexPath = IndexPath(row: self.items.count - 1, section: 0)
self.listTableView.insertRows(at: [indexPath], with: .automatic)
}
}
let cancel = UIAlertAction(title: "Cancel", style: .cancel) {
(alert) in
}
alert.addAction(add)
alert.addAction(cancel)
present(alert, animated: true, completion: nil)
}
func tableView(_ tableView: UITableView, commit editingStyle: UITableViewCell.EditingStyle, forRowAt indexPath: IndexPath) {
items.remove(at: indexPath.row)
tableView.deleteRows(at: [indexPath], with: .automatic)
saveData()
}
}
这是我自定义的单元格代码,称为PointsCell:
import UIKit
class PointsCell: UITableViewCell {
var winScore = 0
@IBOutlet weak var scoreUILabel: UILabel!
@IBAction func pointButtonPressed(_ sender: Any) {
winScore += 1
scoreUILabel.text = "\(winScore)"
}
}
答案 0 :(得分:0)
由于您需要保存分数,所以分数仍然保持为0,首先,您需要为每个玩家分配分数,因此您需要将玩家姓名和得分相结合。
class Player:NSObject, Codable{
let name: String
var score : Int
init(name: String, score: Int) {
self.name = name
self.score = score
}
override var description: String{
return "Name :" + self.name + " Score :" + String(self.score )
}
}
Swift 4引入了Codable协议,通过对您自己的类型采用Codable,您可以将它们与任何内置数据格式进行序列化。
现在,您可以轻松访问带有姓名和得分的玩家。
var players = [Player]()
要从UserDefaults
override func viewWillAppear(_ animated: Bool) {
super.viewWillAppear(animated)
if let items: Data = UserDefaults.standard.object(forKey: "items") as? Data{
self.players = try! PropertyListDecoder().decode([Player].self, from: items)
self.listTableView.reloadData()
}
}
将新播放器添加到列表时,请创建Player
的新实例并将其添加到列表中。
func alert(){
let alert = UIAlertController(title: "Add Player", message: "", preferredStyle: .alert)
alert.addTextField{
(textfield) in
textfield.placeholder = " Enter Player Name "
}
let add = UIAlertAction(title: "Add", style: .default)
{
(action) in guard let textfield = alert.textFields?.first else {return}
if let newText = textfield.text
{
let player = Player(name: newText, score: 0)
self.players.append(player)
let indexPath = IndexPath(row: self.players.count - 1, section: 0)
self.listTableView.insertRows(at: [indexPath], with: .automatic)
}
}
let cancel = UIAlertAction(title: "Cancel", style: .cancel) {
(alert) in
}
alert.addAction(add)
alert.addAction(cancel)
present(alert, animated: true, completion: nil)
}
现在将您的UITableViewDataSource
方法更新为新列表项。
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCell(withIdentifier: "cell") as! PointsCell
cell.player = players[indexPath.row]
return cell
}
现在需要更新saveData
方法以将新列表保存到UserDefaults中,只要要保存列表,便会调用此方法。
func saveData() {
UserDefaults.standard.set(try! PropertyListEncoder().encode(self.players), forKey: "items")
}
PointsCell
类也需要更新为新的对象类型:
class PointsCell: UITableViewCell {
@IBOutlet weak var scoreUILabel: UILabel!
@IBOutlet weak var nameUILabel: UILabel!
var player: Player? {
didSet{
if let name = player?.name {
self.nameUILabel?.text = name
}
if let score = player?.score {
self.scoreUILabel?.text = String(score)
}
}
}
@IBAction func pointbuttonPressed(_ sender: Any) {
if self.player != nil{
let score = self.player?.score ?? 0
self.player?.score = score + 1
scoreUILabel.text = String(self.player?.score ?? 0)
}
}
}