views:

56

answers:

1

Im using a scroll view and need to make the view bigger so I can add the content that appears lower down but IB does allow me to do this?

A: 

Select the view, and then choose Tools > Size Inspector. Then change anything you want, basically.

lugte098
thanks, but the size for the view is greyed out so it wont let me select it?
Dave
Maybe you should drag a custom view over the already present view. As IB always has this standard view. Drag a new one over the default one and then repeat my instructions above
lugte098
So the "solution" is to always put VIEWS on top of VIEWS?Is that REALLY the only way to ever have a resize area?
Bonnie
well, no. Have you tried:myScrollView = [[UIScrollView alloc]initWithFrame:newFrame];myScrollView.contentSize = newSize;[myScrollView addSubview:waveView];[myContentView addSubview:myScrollView];[myScrollView release];
lugte098