如何使用 Monotouch 设置导航项标题的滚动条?
我已在屏幕顶部设置了导航项的标题。但标题文本超出了屏幕宽度。所以我需要在屏幕顶部滚动标题。如何使用 MonoTouch 做到这一点?是否可以?
I have set the title for navigation item on top of the screen. But the title text exceeded from the screen width. So I need scrolling title on the top of the screen. How to do this with MonoTouch? Is it possible?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您很可能必须为 UINavigationItem 工具栏中的文本设置自定义视图。
我对 UIBarButtonItems 做了类似的事情,基本上我创建了一个具有宽度和居中文本的 UILabel 并将其设置为它的自定义视图。
看看这个示例,它是用 Objective-C 编写的,但是你明白了。
You will most likely have to set a custom view for the text in the UINavigationItem's toolbar.
I have done similar with UIBarButtonItems, basically I created a UILabel with a width and centered text and set it as the custom view for it.
Take a look at this example, it's in Objective-C but you get the idea.