1

我有这个真正没有答案的问题.. 在网上寻找这个问题后,我和你一起运气.. 我有一个UITextView从 url 获取字符串。但是...文本字段从第一行的一半被剪切/隐藏,并且仅在我触摸它时才固定。

这是代码:

- (NSString *)getMonthValues{
            NSURL *url = [NSURL URLWithString:[NSString stringWithFormat:@"%@/%@",URL_ADDRESS2,URL_MONTH_ZODIAC]];
            NSString *Value = [[NSString alloc] initWithContentsOfURL:url encoding:NSUTF8StringEncoding error:nil];
            Value = [Value stringByReplacingOccurrencesOfString:@"\\n" withString:@"\n"];
}

-(void)getMonthValue{
    NSString *horoscope_daily = [self getMonthValues];
    [Month_horoscope setText:[NSString stringWithFormat:@"%@",horoscope_daily]];
}

在此处输入图像描述

有人可以解释这个问题并帮我解决吗?!

4

1 回答 1

0

它要么是 1) 被其他视图覆盖,要么是 2) 框架太小而无法看到整个文本。

  1. 要检查封面问题,请尝试在所有其他可见视图上将背景属性设置为 [UIColor redColor]。

  2. 如果是框架问题,请在 setText 之后立即发出

    [Month_horoscope sizeToFit];
    
于 2012-04-10T05:18:43.307 回答