UISegmentedControl 按钮之间没有间隙
我想删除 UISegmentedControl 中按钮之间的分割(间隙)。分段控件由三个图像创建,每个图像宽度为 60 像素,控件宽度为 180 像素。分段控件的样式是UISegmentedControlStyleBar。
但它看起来仍然是这样的:
我尝试将控件宽度设置为 170 像素甚至更小,但没有效果。
感谢您的帮助。 马丁
I want to remove splits (gaps) between buttons in UISegmentedControl. Segmented control is created with three images, each 60 pixels width, control is 180 pixels width. Style of segmented control is UISegmentedControlStyleBar.
But it still looks like this:
I have tried to set control width to 170 pixels or even less with no effect.
Thank you for your help.
Martin
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您需要创建自己的自定义视图。
you need to create your own customized view.
您还可以使用与按钮颜色相同的图像在分段控件上调用
setDividerImage:
。You could also call
setDividerImage:
on the segment control with an image which is the same color as your buttons.