add rightview in UIButton

后端 未结 4 567
情歌与酒
情歌与酒 2020-12-14 21:48

I am trying to display some text and an image over a button. I am using the code from here

    let btnSort   = UIButton.buttonWithType(UIButtonType.System) a         


        
4条回答
  •  刺人心
    刺人心 (楼主)
    2020-12-14 22:30

    Please check below code.

    Hope it will work for you.

    let teamImage: UIButton = UIButton(frame: CGRect(x: 0, y: 75, width: 100, height: 50))
    let imageTest = UIImage(named: "immgg")
    
    teamImage.setTitle("HypnotoadTitle", forState: .Normal)
    teamImage.setBackgroundImage(imageTest, forState: .Normal)
    self.view.addSubview(teamImage)
    

提交回复
热议问题