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
2010-04-06 07:49:21
thanks, but the size for the view is greyed out so it wont let me select it?
Dave
2010-04-06 09:42:53
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
2010-04-06 12:36:32
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
2010-04-07 01:14:14
well, no. Have you tried:myScrollView = [[UIScrollView alloc]initWithFrame:newFrame];myScrollView.contentSize = newSize;[myScrollView addSubview:waveView];[myContentView addSubview:myScrollView];[myScrollView release];
lugte098
2010-04-07 08:00:13