storyboard positioning text below image inside a button

前端 未结 8 1102
野趣味
野趣味 2021-02-01 13:13

I am able to set the image and text for button. But it is aligned horizontally. I want the image and text to be aligned vertically inside the button. i.e., text below the image<

8条回答
  •  隐瞒了意图╮
    2021-02-01 13:50

    You cannot change layout directly in UIButton, but you can try to use these properties on UIButton:

    UIButton *button = ...
    button.titleEdgeInsets = UIEdgeInsetsMake(....);
    button.imageEdgeInsets = UIEdgeInsetsMake(....);
    

    If it won't help I'd recommend to subclass from UIResponder and make your own component and do your own layout as you needed it.

提交回复
热议问题