Setting a background image for UIButton

后端 未结 7 1222
孤城傲影
孤城傲影 2020-12-17 14:59

I am a newbie with Objective C. How would I set the background of this button to an image (image is already in the resources folder in XCode, \"blue_button.png\") instead o

7条回答
  •  猫巷女王i
    2020-12-17 15:43

    Swift 4+

    var btnClear = UIButton()
    btnClear = UIButton(type: .custom)
    btnClear.frame = CGRect(x: 115, y: 200, width: 90, height: 40)
    btnClear.setBackgroundImage(UIImage(named: "blue_button.png"), for: .normal)
    view.addSubview(btnClear)
    

提交回复
热议问题