目标 C.如何从文本区域中删除滚动条?

发布于 2024-12-09 11:06:02 字数 167 浏览 0 评论 0原文

我这里需要一点帮助。 我为我的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

请别遗忘我 2024-12-16 11:06:02

您可能正在使用扩展 UIScrollViewUITextView,因此您可以使用其 showsVerticalScrollIndicator 属性:(

- (void)viewDidLoad {
    [super viewDidLoad];
    poemView.showsVerticalScrollIndicator = NO;
}

假设您的文本视图是实例变量/视图控制器的出口)

You're probably using a UITextView which extends UIScrollView, so you can use its showsVerticalScrollIndicator property:

- (void)viewDidLoad {
    [super viewDidLoad];
    poemView.showsVerticalScrollIndicator = NO;
}

(assuming your text view is an instance variable/outlet of your view controller)

南城旧梦 2024-12-16 11:06:02

在主故事板中,您可以找到属性检查器,

在那里您可以禁用“显示垂直指示器”

在此处输入图像描述

In main storyboard you can find attributes inspector,

there you can disable "Shows vertical indicator"

enter image description here

农村范ル 2024-12-16 11:06:02

删除灰色 UITableView 索引栏

该“滚动栏”是您的索引栏。

从sectionIndexTitlesForTableView: 返回nil,它就会消失。

Remove Gray UITableView Index Bar

That "scroll bar" is your index bar.

Return nil from sectionIndexTitlesForTableView: and it'll go away.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文