根据行数在文本视图中启用滚动

发布于 2024-11-04 04:24:44 字数 49 浏览 0 评论 0原文

如果行数超过 5,我想在文本视图中启用滚动,否则不应有任何滚动。这可能吗?如何实现?

I want to enable scrolling in the textview if the number of lines exceeds 5 otherwise there should not be any scrolling. Is that possible and how to achieve that?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

慈悲佛祖 2024-11-11 04:24:44

UITextView 继承自 UIScrollView,它有一个名为 scrollEnabled 的属性,

您可以添加将您的类注册为 UITextViewDelegate 并实现方法

- (void)textViewDidChange:(UITextView *)textView

然后从textView 对象获取 text 属性,并检查有多少换行符/回车符。如果超过 5 个,则将 scrollEnabled 设置为 YES

更新:

查看 NSString UIKit Additions,这个类中有一些方法可以让你获取NSStringCGSize,特别是 sizeWithFont:constrainedToSize:lineBreakMode:

使用此功能,您应该能够在 CGSize 后启用滚动code> 达到等于或大于由 uifont.lineHeight*5 计算的 5 行文本的高度

UITextView inherits from UIScrollView which has a property called scrollEnabled

You can add register your class as the UITextViewDelegate and implement the method

- (void)textViewDidChange:(UITextView *)textView

Then from the textView object get the text property, and check to see how many newlines/carriage returns there are. If there are more than 5, then set scrollEnabled to YES

UPDATE:

Take a look at NSString UIKit Additions, there are some methods in this class that allow you to get the CGSize of your NSString, specifically sizeWithFont:constrainedToSize:lineBreakMode:

Using this you should be able to enable scrolling once the CGSize reaches a height equivalent or greater than 5 lines of text calculated by uifont.lineHeight*5

时光清浅 2024-11-11 04:24:44

尝试使用此代码:

- (void)viewDidAppear:(BOOL)animated
{
    [self.tableView reloadData];
    if([myDataSourceArray count] < 6)
    {
        self.tableView.scrollEnabled = NO;
    }
    else
    {
        self.tableView.scrollEnabled = YES;
    }
}

Try to use this code:

- (void)viewDidAppear:(BOOL)animated
{
    [self.tableView reloadData];
    if([myDataSourceArray count] < 6)
    {
        self.tableView.scrollEnabled = NO;
    }
    else
    {
        self.tableView.scrollEnabled = YES;
    }
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文