iPhone & UISegmentedControl - 更改图像并保留标题?
有没有办法更改 uisegmentedcontrol 中所有片段的图像并保留标题?
设置图像时它会删除标题吗?或者它是否在标签顶部显示 UImageView? 如果图像位于标签顶部,是否可以访问它并将其发送到后面???
Is there any way to change the images for all segments in a uisegmentedcontrol and keep the title?
Does it remove the title when you set an image? or does it display the UImageView on top of the label?
If the image goes on top of the label is it possible to access it and send it to back???
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我认为这是不可能的。该文档说明如下:
但是,您自己实现该控制应该相当容易。
I don't think this is possible. The documentation says the following:
However, it should be fairly easy to implement the control yourself.
试试这个。
Try this.
我最终循环遍历了 UISegmentedControl 中的每个 UISegment。
我向每个 UISegment 添加了一个 UIImageView 并将它们发送到视图的后面
I ended up looping through each UISegment in my UISegmentedControl.
I added a UIImageView to each UISegment and sent them to the back of the view