目标 C.如何从文本区域中删除滚动条?
我这里需要一点帮助。 我为我的 iPad 制作了非常简单的应用程序,背景图像上只有一个文本区域(通过使用文本字段对象)。我在这个文本字段中放置了一些诗,但这首诗比 iPas 的屏幕更长,因此运行我的应用程序后我可以向下滚动我的诗。 现在,我想删除滚动诗歌时出现的一个灰色的小滚动条。 我应该去哪里寻找答案? 谢谢。
I need a little help here.
I made pretty simple app for my iPad with only one text area (by using Text Field object) on background image. I placed some poem in this text field but this poem is more longer than iPas's screen so after running my app I was able to scroll down my poem.
Now, I want to remove a little grey scroll bar that appears when I scrolling my poem.
Where should I look for an answer?
Thank you.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可能正在使用扩展
UIScrollView
的UITextView
,因此您可以使用其showsVerticalScrollIndicator
属性:(假设您的文本视图是实例变量/视图控制器的出口)
You're probably using a
UITextView
which extendsUIScrollView
, so you can use itsshowsVerticalScrollIndicator
property:(assuming your text view is an instance variable/outlet of your view controller)
在主故事板中,您可以找到属性检查器,
在那里您可以禁用“显示垂直指示器”
In main storyboard you can find attributes inspector,
there you can disable "Shows vertical indicator"
删除灰色 UITableView 索引栏
该“滚动栏”是您的索引栏。
从sectionIndexTitlesForTableView: 返回nil,它就会消失。
Remove Gray UITableView Index Bar
That "scroll bar" is your index bar.
Return nil from sectionIndexTitlesForTableView: and it'll go away.