不能将[Struct]类型的值转换为强制swift中的[string]类型

时间:2017-06-14 18:04:30

标签: arrays swift struct

我收到了这个错误:

  

无法将[Destinos]类型的值转换为强制swift

中的[String]类型

我有这个结构:

public struct Destinos: Data { public var idDestino : Int? public var desDestino : String? }

和此:

var listado = [Destinos]() listado.append(Destinos(idDestino: 1, desDestino: "Asunción")) listado.append(Destinos(idDestino: 2, desDestino: "Miami"))

然后:

var ListaDeDestinos = [String]()

所以我的错误出现在这一行:

ListaDeDestinos = DestinoLista.listado as [String]

这里有什么问题?可以帮帮我吗?我在论坛中找不到这样的东西

编辑 我的所有代码:

import UIKit

类Api {

let Presentador: DestinoPresenter! // referenciamos la clase DestinoPresenter en una variable local

init(Present: DestinoPresenter){ // constuctor: inicializamos la variable Presentador y creamos una copia de la clase DestinoPresenter
    Presentador = Present
}

var listado = [Destinos]()


func GetDestinos(){


    listado.append(Destinos(idDestino: 1, desDestino: "Asunción"))
    listado.append(Destinos(idDestino: 2, desDestino: "Miami"))


    print(listado)

}

}

class DestinoPresenter {

let mview: ViewController // referenciamos la clase DestinoPresenter en una variable local

init(view: ViewController) { //construnctor
    mview = view
}

var ArrayAutoComplete = [String]()
var ListaDeDestinos = [String]()
fileprivate var DestinoLista: Api!


func searchDestinos(_ substring: String) {

    ArrayAutoComplete.removeAll() //cada vez que llamemos a esta funcion, limpiamos la variable ArrayAutoComplete del TableView

    DestinoLista = Api(Present: self)
    DestinoLista.GetDestinos()

// ListaDeDestinos = [(DestinoLista.listado as AnyObject)as!串]         ListaDeDestinos = DestinoLista.listado as [String]

    for key in ListaDeDestinos {

        let myString:NSString! = key as NSString

        if (myString.lowercased.contains(substring.lowercased())) {
            print(myString.contains(myString as String) ? "yep" : "nope")
            ArrayAutoComplete.append(key)

        }
    }

    mview.mostarResultados(ArrayResultados: ArrayAutoComplete) //llamamos a la función y le pasamos como parametro ArrayAutoComplete

}

}

类ViewController:UIViewController {

@IBOutlet weak var textField: UITextField! = nil
@IBOutlet weak var tableView: UITableView! = nil

var autoCompleteDestino: [String] = []

fileprivate var DestinoP: DestinoPresenter!

override func viewDidLoad() {
    super.viewDidLoad()

    //LEER: pasando como referencia tu vista
    DestinoP = DestinoPresenter(view: self)


    title = "Texto predecible"

// DestinoP.getDestinos() // DestinoP.ListarDestinos()

}
func mostarResultados(ArrayResultados: [String]) {

    autoCompleteDestino = ArrayResultados
    tableView.reloadData()

}

}

扩展名ViewController:UITextFieldDelegate {

public func textField(_ textField: UITextField, shouldChangeCharactersIn range: NSRange, replacementString string: String) -> Bool {

    let substring = (textField.text! as NSString).replacingCharacters(in: range, with: string)

    DestinoP.searchDestinos(substring)

    return true

}

}

扩展名ViewController:UITableViewDataSource {     // Completa el string encontrado en el tableView segun caracter ingresado en el textField     public func tableView(_ tableView:UITableView,cellForRowAt indexPath:IndexPath) - > UITableViewCell {         让cell = tableView.dequeueReusableCell(withIdentifier:“cell”,for:indexPath)为UITableViewCell         让index = indexPath.row作为Int

    cell.textLabel!.text = autoCompleteDestino[index]

    return cell
}

}

扩展名ViewController:UITableViewDelegate {

public func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {

    return autoCompleteDestino.count

}
//    selecciona el resultado desde el tableView para completar en el textField.
public func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {

    let selectedCell: UITableViewCell = tableView.cellForRow(at: indexPath)!

    textField.text = selectedCell.textLabel!.text!

}

}

2 个答案:

答案 0 :(得分:1)

目前尚不清楚你想要的是“Destinos”的字符串版本。如果你真的不在乎,只想要“可用于调试的东西”,那么将其映射到String(describing:)

let listaDeDestinos = listado.map(String.init(describing:))

答案 1 :(得分:1)

如果你想要每个listados对象的字符串成员变量,请执行:

for object in DestinoLista.listados {
    ListaDeDestinos.append(object.desDestino)
}