我有一個視圖,其中包含一些事件的細節,其中包括imageview,一些標籤等。 我將視圖中的小型子視圖描述爲可滾動的視圖,如下所示。在iPhone視圖中滾動頁面
CGRect descriptionTextViewRect = CGRectMake(15, 185, 280, 85);
descriptionText = [[UITextView alloc] initWithFrame:descriptionTextViewRect];
descriptionText.textAlignment = UITextAlignmentLeft;
descriptionText.text =des;
descriptionText.editable = NO;
descriptionText.layer.cornerRadius = 5.0;
descriptionText.clipsToBounds = YES;
descriptionText.userInteractionEnabled = YES;
descriptionText.font = [UIFont systemFontOfSize:15];
[scrollView addSubview: descriptionText];
我跟着這個link,但我得到滾動兩個文本視圖和滾動視圖
我也跟着這樣
float sizeOfContent = 0;
int i ;
for (i=0; i<[scrollView.subviews count]; i++) {
sizeOfContent += descriptionText.frame.size.height;
}
scrollView.contentSize = CGSizeMake(descriptionText.frame.size.width, sizeOfContent)
我需要顯示的描述的全部內容和使整個詳細信息頁面可滾動。
我做得對嗎?或者我錯過了某些東西?
我該怎麼做?
謝謝。
確切的,但我需要設置說明文本的大小並使詳細信息頁面可滾動。我現在只能滾動描述文字。你能爲此提供建議嗎? – user1268938