Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
ラベルに二重の数字を表示しようとしています。ただし、オプションとして表示されます。「!」を使用してラップを解除できません。一部のデータがゼロであるためです。
「Optional(...)」テキストが表示されないようにするにはどうすればよいですか?
これはどのように見えるかです:
let row = elementArray[indexPath.row] mPoint.text = String(row.meltPoint) //Optional(2070.0)
if letオプションの値をアンラップするために使用します。
if let
let row = elementArray[indexPath.row] if let myNumber = row.meltPoint { mPoint.text = "\(myNumber)" } else { mPoint.text = "N/A" }