UIScrollView Disappears From Interface Builder? - Stack Overflow most recent 30 from stackoverflow.com2009-11-30T19:38:44Zhttp://stackoverflow.com/feeds/question/891553http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/891553/uiscrollview-disappears-from-interface-builder1UIScrollView Disappears From Interface Builder?Rahul Vyas2009-05-21T05:50:20Z2009-09-26T14:13:51Z
<p>i have interface builder 3.1 but i don't see any UIScrollView and UIAlertView is something missing there?how can i get them in interface builder. i want a view with 50 labels and i want to add them via Interface Builder not using the code please help...</p>
http://stackoverflow.com/questions/891553/uiscrollview-disappears-from-interface-builder/901602#9016023Answer by Brad Larson for UIScrollView Disappears From Interface Builder?Brad Larson2009-05-23T14:15:33Z2009-05-23T15:46:17Z<p>UIAlertView is a modal dialog, triggered within code, so it won't be very useful to set it up in Interface Builder. To create an alert, use code similar to the following:</p>
<pre><code>UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Error message" message:@"Error description" delegate:self cancelButtonTitle:@"OK" otherButtonTitles: nil];
[alert show];
[alert release];
</code></pre>
<p>UIScrollView is right there within the Interface Builder library. I don't know why you aren't seeing it. Its icon is a blank white view with a grey scroller on its right side. Even by inserting such a view within your interface, you still may need to set some parameters in code to get the scrolling to work just right.</p>
<p>As a conceptual comment, if you want 50 labels within a scroll view, I think you might be better served by using a UITableView instead.</p>