- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在寻找一种方法来以编程方式禁用 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);
我习惯在框架和文本之间留一点空间。 . .我做得对吗?
最佳答案
这应该有助于...UITextView
是 UIScrollView
的子类,因此很容易实现。
mytextView.contentSize = CGSizeMake(mytextView.frame.size.height,mytextView.contentSize.height);
mytextView.showsHorizontalScrollIndicator = NO;
关于iphone - 以编程方式禁用水平滚动到 UITextView,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9657746/
我是一名优秀的程序员,十分优秀!