Label under image in UIButton

后端 未结 30 1985
佛祖请我去吃肉
佛祖请我去吃肉 2020-11-29 15:53

I\'m trying to create a button which has some text beneath the icon (sorta like the app buttons) however it seems to be quite difficult to achieve. Any ideas how can I go ab

30条回答
  •  一整个雨季
    2020-11-29 16:43

    If you are using custom fonts the calculation for the titleLabel size won't work properly, you should replace it with

    let titleLabelSize = self.titleLabel?.text?.size(withAttributes: [NSAttributedStringKey.font: self.titleLabel!.font!])

提交回复
热议问题