0
は予想引数の型に「[MyProtocol]」型の値を変換することはできません「inoutの_」
を私はこれが起こっ作ったものを発見しようとしましたが、私は失敗し、何か問題があるのでしょうか?
他に誰かがこのようなエラーが発生しましたか?
は、私はそれのために何ができるか、私はこれが私のコードです
助ける必要があります。
protocols = structs
をループ:
protocol MyProtocol {
}
struct MyStruct: MyProtocol {
}
let structs = [MyStruct(), MyStruct()]
var protocols = [MyProtocol]()
protocols = structs // it's ok
protocols += structs // this got an error