1
メンバ変数に格納されている型にオブジェクトをキャストすることは可能ですか?変数型の型キャスト
私はこれを試してみた:
let targetClass = type(of: MyTargetClass)
...
if anyObject is targetClass { // ERROR: use of undeclared type 'targetClass'
let test = anyObject as! targetClass // ERROR: use of undeclared type 'targetClass'
}
をしかし、それが言うので、それは動作しません「宣言されていないタイプの使用が 『targetClass』」