## 「:」「=」の違い
他のファイルのクラスや構造体を参照するときに、「:」を、
単に代入するときに、「=」を使うのでしょうか。
## コード
var product: Product!
swift
1class ProductsDetailVC: UIViewController { 2 3 // Outlets 4 @IBOutlet weak var productImg: UIImageView! 5 @IBOutlet weak var productTitle: UILabel! 6 @IBOutlet weak var productPrice: UILabel! 7 @IBOutlet weak var productDescription: UILabel! 8 @IBOutlet weak var bgView: UIVisualEffectView! 9 10 // Variable 11 var product: Product! // <----- : 12 13 override func viewDidLoad() { 14 super.viewDidLoad() 15 16 productTitle.text = product.name 17 productDescription.text = product.productDescription 18 19 if let url = URL(string: product.imageUrl) { 20 productImg.kf.setImage(with: url) 21 } 22 23 let formatter = NumberFormatter() // <----- = 24 formatter.numberStyle = .currency 25 if let price = formatter.string(from: product.price as NSNumber) { 26 productPrice.text = price 27 } 28 29 } 30
質問は以上です。
お時間あるときに、ご返信頂けましたら幸いです????
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。