如何創建此視圖。用於添加滾動視圖
yPos=0;
for (int i=0; i<24; i++) {
UIView *timeView=[[UIView alloc]initWithFrame:CGRectMake(71, yPos, 909, 60)];
timeView.userInteractionEnabled=TRUE;
timeView.exclusiveTouch=YES;
if (i==4) {
UIView *ssview=[[UIView alloc]initWithFrame:CGRectMake(0, 0, 100, 80)];
ssview.tag=1;
ssview.userInteractionEnabled=TRUE;
UILabel *recurenceId=[[UILabel alloc]init];
[email protected]"A12334";
[ssview addSubview:recurenceId];
ssview.backgroundColor=[UIColor orangeColor];
[timeView addSubview:ssview];
[ssview addGestureRecognizer:tap];
}
這裏ssview高度 代碼比timeview.so它被加入到下一個子視圖也
這裏的每行是滾動視圖的子視圖更多。 現在我不得不添加另一個綠色的視圖。
您的問題是什麼? – Kepler
如果在第12行添加了greenView,它必須根據其高度在第13行上添加.. – sudheer
因此您想根據子視圖更改第12行的高度? –