1. ホーム
  2. ios

プログラムでボタンを作成し、背景画像を設定する

2023-08-24 10:26:16

質問

Swiftでボタンを作成し、背景画像を設定してみたところ。

let button   = UIButton.buttonWithType(UIButtonType.System) as UIButton
    button.frame = CGRectMake(100, 100, 100, 100)
    button.setImage(IMAGE, forState: UIControlState.Normal)
    button.addTarget(self, action: "btnTouched:", forControlEvents: UIControlEvents.TouchUpInside)

    self.view.addSubview(button)

いつもエラーになります: " 式の型 'Void' を型 'UIImage' に変換することができません。 "。

どのように解決するのですか?

あなたのコードは、以下のようになります。

let image = UIImage(named: "name") as UIImage?
let button   = UIButton(type: UIButtonType.Custom) as UIButton
button.frame = CGRectMake(100, 100, 100, 100)
button.setImage(image, forState: .Normal)
button.addTarget(self, action: "btnTouched:", forControlEvents:.TouchUpInside)
self.view.addSubview(button)