Value of optional type ‘Int?’ must be unwrapped to a value of type ‘Int’などの「?」マークの回避方法
1380 ワード
swiftでプログラムを書いていると下の画像のように「?」が邪魔をして変数に上手く代入できない事がある。
上の画像のようなOptional(?マーク)を外して使用したい場合は
ViewContoroller.swift
guard let example = i else {
return
}
のようにguard letの変数で代入してあげることで使用できるようになる。
Author And Source
この問題について(Value of optional type ‘Int?’ must be unwrapped to a value of type ‘Int’などの「?」マークの回避方法), 我々は、より多くの情報をここで見つけました https://qiita.com/sousai/items/5a5768569dc8eab29e47著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .