UIButtonが選択されているときに問題が発生しました。コードは、スウィフト3である:それはradioButton.isSelected = true
によって選択されている場合UIButton選択した画像が機能しない
let radioButton = UIButton(type: .system)
radioButton.frame = CGRect(x: 0, y: 0, width: 40, height: 40)
radioButton.setImage(UIImage(named: "buttonUnchecked"), for: .normal)
radioButton.setImage(UIImage(named: "buttonChecked"), for: .selected)
radioButton.setTitle("This is some text.", for: .normal)
radioButton.sizeToFit()
、全く画像が示されていません。
の? –
あなたのビューにradioButtonを追加しましたか? – penatheboss