使用 Interface Builder 将 UIToolBar 按钮的大小调整为自定义图像的大小
我已在 Interface Builder 中的 UIToolBar 中添加了一个栏按钮项(样式:普通,标识符:自定义,图像:FaceBook_Icon.png)。我希望将按钮大小设置为自定义图像的大小 (40x40),但是,调整 IB 属性中的栏项目大小不会影响按钮的大小(即栏按钮仍然比图像大)。如何调整大小,以便只能看到我的自定义图像?
提前致谢! 杰里米
I have added a bar button item to my UIToolBar in Interface Builder (Style: Plain, Identifier: Custom, Image: FaceBook_Icon.png). I desire to set the button size to the size of my custom image (40x40), however, adjusting the bar item size in the IB attributes does not affect the button's size (i.e. the bar button is still larger than the image). How may I adjust the size, so that can only see my custom image?
Thanks in advance!
Jeremy
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在 IB 中,您可以调整任何视图的大小。选择您的按钮。将其设置为自定义类型。然后设置你的图像。现在不要拖动和缩放按钮。只需选择它并在 IB 中设置其宽度和高度值即可。要设置宽度和高度,请选择 IB 的缩放图像按钮()
In IB You can adjust the size of any view.Select your button. Set it as customtype. Then set your image. Now don't grag and scale the button. Just select it and set its width and height values in IB. For setting width and height select the scale imaged button of IB()
一定要在IB里做吗?如果不是,只需在视图控制器中创建一个 40*40 UIButton 并将其设置为选项卡栏按钮的自定义视图。
Do you have to do it in IB? if not simply create a 40*40 UIButton in your viewcontroller and set it the customized view of the tabbar button.