首页 > 解决方案 > 无法将“Int”类型的值转换为预期的参数类型“String.Index”

问题描述

我收到此错误:

无法将“Int”类型的值转换为预期的参数类型“String.Index”

上线Goals[0].remove(at: indexPath.row)。我该如何解决这个问题?

这是我的代码:

import UIKit

class GoalsViewController: UIViewController {

    @IBOutlet weak var tableView: UITableView!

    var Goals: [String] = ["goal 1", "goal 2", "goal 3"]

    override func viewDidLoad() {
        super.viewDidLoad()

        tableView.delegate = self
        tableView.dataSource = self
    }
}

extension GoalsViewController: UITableViewDataSource, UITableViewDelegate {

    func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
         if indexPath.section == 0 {
             Goals[0].remove(at: indexPath.row)
             tableView.reloadData()
         }
     }

    func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
        return Goals.count
    }
    func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
        let cell = tableView.dequeueReusableCell(withIdentifier: "GoalCell_1", for: indexPath)
        cell.textLabel?.text = Goals[indexPath.row]
        return cell
    }

}

标签: iosswift

解决方案


目标是一个数组。

var Goals: [String] = ["goal 1", "goal 2", "goal 3"]

在这里你选择数组'[0]'的第一个元素并尝试从中'.remove',但它是一个字符串

Goals[0].remove(at: indexPath.row)

如果要从目标数组中删除字符串:

Goals.remove(at: indexPath.row)

推荐阅读