gpt4 book ai didi

ios - UITextview在旋转到横向后不显示顶行

转载 作者:行者123 更新时间:2023-12-01 16:32:55 26 4
gpt4 key购买 nike

将设备/iOS 模拟器旋转到横向时出现问题。 UITextView没有出现在顶部。它显示在中间,直到我向上滚动。我尝试了很多事情,例如:

[textView sizeToFit];
[textView layoutIfNeeded];

[textView setContentOffset:CGPointMake(0.0, 0.0)];

[textView scrollRectToVisible:CGRectMake(0.0, 0.0, 1.0, 1.0) animated:NO];

我知道我的问题很短,但我没有看到有帮助的解决方案。

有人可以帮助我吗?

最佳答案

我找到的真正解决方案。
在 Xcode6 中:
选择导航 Controller -->在界面生成器的右侧面板
-勾选调整 ScrollView 插图。

在 viewDidLoad 的 .m 文件中
- 输入这段代码:
[_myTextViewGrm sizeToFit];

并将此方法放入 .m 文件中

- (void)willAnimateRotationToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation duration:(NSTimeInterval)duration
{
[self.myTextViewGrm scrollRectToVisible:CGRectMake(0, 0, 1, 1) animated:NO];
}

完毕 !!!!

关于ios - UITextview在旋转到横向后不显示顶行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30850930/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com