我擴大文本視圖,其內容的大小像下面不能通過高度scrollview.content大小
CGRect _frame = descriptionText.frame;
_frame.size.height = descriptionText.contentSize.height;
descriptionText.frame = _frame;
和內容超過視圖,無法向下滾動查看文本。
我試着設置滾動視圖的大小,這樣
scrollView.contentSize = CGSizeMake(295,_frame.size.height);
,但它不能滾動,但工作,如果我給這樣的
scrollView.contentSize = CGSizeMake(295,600);
數值我需要設置大小滾動視圖的大小與動態內容的大小。 我該怎麼做?
編輯 說明文字
CGRect descriptionTextViewRect = CGRectMake(15, 185, 280, 85);
descriptionText = [[UITextView alloc] initWithFrame:descriptionTextViewRect];
descriptionText.textAlignment = UITextAlignmentLeft;
descriptionText.text =offerdes;//this is the text fetched from an xml and is dynamic.
descriptionText.editable = NO;
descriptionText.layer.cornerRadius = 5.0;
descriptionText.clipsToBounds = YES;
descriptionText.userInteractionEnabled = YES;
descriptionText.font = [UIFont systemFontOfSize:15];
[scrollView addSubview: descriptionText];
[descriptionText release];
是什麼_frame.size.height的價值,也嘗試提高accpet率 –
@OmarAbdelhafith _frame.size.height返回null,儘管視圖已經擴展。 – user1268938
「descriptionText.contentSize.height」的值是什麼? –