4
5

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

[tvOS]UIButtonのBackgroundImageが先頭に表示される問題を解消する

Posted at

tvOSのUIButtonのBackgroundImageはなぜかimageViewよりも前にあるので、セットすると文字やsetImage,stateした画像が隠れて見えなくなります。

Simulator Screen Shot 2015.11.05 22.43.14.png

上が修正済みのボタン、下が既存のUIButton

レイヤー構造

ss.png

UIImageViewが二枚あって分かりにくいですが、backgroundImageのImageViewが先頭に来てしまっています。


class FixedButton : UIButton {
    override func layoutSubviews() {
        super.layoutSubviews()
        
        if let iv = imageView {
            iv.superview?.bringSubviewToFront(iv)
        }
        if let lbl = titleLabel {
            lbl.superview?.bringSubviewToFront(lbl)
        }
    }
}

上記のようにUILabelとUIImageViewを先頭に移動させれば解決します。(backgroundImageのImageViewは直接参照できないのでこれで)

4
5
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
4
5

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?