为啥 UITextView 在调整大小后会在坏帧中绘制文本?

Posted

技术标签:

【中文标题】为啥 UITextView 在调整大小后会在坏帧中绘制文本?【英文标题】:why UITextView draws text in bad frame after resizing?为什么 UITextView 在调整大小后会在坏帧中绘制文本? 【发布时间】:2013-04-30 13:29:36 【问题描述】:

我被某种魔法所困扰:当我尝试更改 UITextView 框架(在本例中为 UISlider)时,文本被绘制在比框架(多次调整大小)的其他(更小)区域中。有趣的是,如果我们在试图扩大框架时滑动得足够快,文本会绘制在非常正确的区域。有人可以解释为什么吗?我尝试布局、自动调整大小、设置内容大小和边界,但没有任何效果。

- (void)viewDidLoad

    [super viewDidLoad];

    _textView = [[UITextView alloc] initWithFrame:CGRectMake(10, 10, 100, 100)];
    _textView.backgroundColor = [UIColor greenColor];
    _textView.text = @"some useless text which will be drawn bad";
    [self.view addSubview:_textView];

    UISlider *slide = [[UISlider alloc] initWithFrame:CGRectMake(10, 130, 100, 20)];
    [slide setValue:0.0];
    [slide addTarget:self action:@selector(changedValue:) forControlEvents:UIControlEventValueChanged];
    [self.view addSubview:slide];

- (void)changedValue:(UISlider *)slider

    CGRect textViewFrame = _textView.frame;
    textViewFrame.size.width = [slider value] * 200;
    _textView.frame = textViewFrame;


调整大小之前

调整大小后

【问题讨论】:

【参考方案1】:

好吧,经过几个小时的谷歌,我发现在设置我计算的帧值之前设置 CGRectZero 帧消除了我的问题。 (我将 UITextView 子类化以覆盖 setFrame: 方法)。我的代码如下。

- (void)setFrame:(CGRect)frame

    [super setFrame:CGRectZero];
    [super setFrame:frame];

【讨论】:

【参考方案2】:
- (void)viewDidLoad
  
      [super viewDidLoad];

     _textView = [[UITextView alloc] initWithFrame:CGRectMake(10, 10, 100, 100)];
     _textView.backgroundColor = [UIColor greenColor];
     [_textView setTextAlignment:NSTextAlignmentCenter];
     _textView.text = @"some useless text which will be drawn bad";
     [self.view addSubview:_textView];

      UISlider *slide = [[UISlider alloc] initWithFrame:CGRectMake(10, 130, 100, 20)];
      [slide setMinimumValue:100.0];
      [slide setMaximumValue:200.0];
      [slide addTarget:self action:@selector(changedValue:) forControlEvents:UIControlEventValueChanged];
      [self.view addSubview:slide];
  

 - (void)changedValue:(UISlider *)slider
  
      NSLog(@"slider.value = %f",[slider value]);

      CGSize textSize=[_textView.text sizeWithFont:[UIFont systemFontOfSize:18]
                                 constrainedToSize:CGSizeMake([slider value], 100)
                                     lineBreakMode:NSLineBreakByWordWrapping];

     [self.textView setFrame:CGRectMake(self.textView.frame.origin.x, self.textView.frame.origin.y, textSize.width, textSize.height)];

   

【讨论】:

这不是我所需要的。对于 textView 宽度,我想设置滑块值,而不是计算 textSize 值。

以上是关于为啥 UITextView 在调整大小后会在坏帧中绘制文本?的主要内容,如果未能解决你的问题,请参考以下文章

为啥 twitter 在调整大小时会在 Google Chrome 上启动“打嗝”?

在 UITableViewCell 中调整 UITextView 的大小

UITextView 文本空间在调整大小时变小

通过 UITextView 内容大小调整 UITableView 单元格的大小

在 UIScrollView 中自动调整 UITextView 的大小

如何在不调整大小的情况下旋转 UITextView?