我遇到UITextView
的问题。在模拟器上,它通常显示UITextView
没有任何切割但是当我在真实设备上运行项目时,我正在中间切割。
self.popisakce.text = [self.objc objectForKey:@"Class"];
[self.popisakce sizeToFit]; //added
[self.popisakce layoutIfNeeded]; //added
[self.popisakce sizeToFit];
CGRect frame = self.popisakce.frame;
CALayer *imageLayerRRR = self.popisakce.layer;
[imageLayerRRR setCornerRadius:5];
[imageLayerRRR setMasksToBounds:YES];
UIScrollView* scrollview = [[UIScrollView alloc] initWithFrame:CGRectMake(0,25,768, 900)];
scrollview.showsVerticalScrollIndicator=YES;
scrollview.scrollEnabled=YES;
scrollview.userInteractionEnabled=YES;
[self.view addSubview:scrollview];
scrollview.contentSize = CGSizeMake(768,frame.size.height+770);
以下是我的输出:
答案 0 :(得分:1)
当您将文本放在不可见的UITextView中时,它可能无法完全显示。
尝试在代码流中移动self.popisakce.text = [self.objc objectForKey:@"Class"];
行。
答案 1 :(得分:0)
[textView setScrollEnabled:NO];
解决了这个问题。