gpt4 book ai didi

ios - iPhone UIButton - 图像位置

转载 作者:IT王子 更新时间:2023-10-29 07:28:33 24 4
gpt4 key购买 nike

我有一个 UIButton 文本“探索应用程序”和 UIImage (>)在 Interface Builder 中,它看起来像:

[ (>) Explore the app ]

但我需要将这个 UIImage 放在文本之后:

[ Explore the app (>) ]

如何将 UIImage 移动到右侧?

最佳答案

我的解决方案很简单

[button sizeToFit];
button.titleEdgeInsets = UIEdgeInsetsMake(0, -button.imageView.frame.size.width, 0, button.imageView.frame.size.width);
button.imageEdgeInsets = UIEdgeInsetsMake(0, button.titleLabel.frame.size.width, 0, -button.titleLabel.frame.size.width);

关于ios - iPhone UIButton - 图像位置,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2515998/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com