gpt4 book ai didi

iphone - 以编程方式禁用水平滚动到 UITextView

转载 作者:行者123 更新时间:2023-11-28 17:58:09 25 4
gpt4 key购买 nike

我正在寻找一种方法来以编程方式禁用 UITextView 的水平滚动,通过 Interface Builder 很容易,但是由于我是以编程方式设计 View ,所以我找不到方法来做到这一点,我已经也用谷歌搜索,但我得到的最多的是:

How to stop the horizontal scrolling programmatically?

而且它不工作。有什么提示吗?

self.textViewOpenedRect = CGRectMake(20, 20, 280, 130);
self.textView = [[UITextView alloc] initWithFrame: self.textViewOpenedRect];
self.textView.contentInset = UIEdgeInsetsMake(5, 5, 5, 5);
self.textView.delegate = self;
self.textView.backgroundColor = [UIColor clearColor];
self.textView.contentSize = CGSizeMake( self.textView.frame.size.height, self.textView.contentSize.height);

self.textView.alwaysBounceHorizontal = NO;
self.textView.bounces = NO;

更新:显然问题是因为那行代码:

self.textView.contentInset = UIEdgeInsetsMake(5, 5, 5, 5);

我习惯在框架和文本之间留一点空间。 . .我做得对吗?

最佳答案

这应该有助于...UITextViewUIScrollView 的子类,因此很容易实现。

mytextView.contentSize = CGSizeMake(mytextView.frame.size.height,mytextView.contentSize.height);

mytextView.showsHorizontalScrollIndicator = NO;

关于iphone - 以编程方式禁用水平滚动到 UITextView,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9657746/

25 4 0
文章推荐: ios - 这种模式适合核心数据吗?
文章推荐: iphone - 使具有较长水平行的 对移动设备更友好