UIScrollView Disappears From Interface Builder? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T19:38:44Z http://stackoverflow.com/feeds/question/891553 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/891553/uiscrollview-disappears-from-interface-builder 1 UIScrollView Disappears From Interface Builder? Rahul Vyas 2009-05-21T05:50:20Z 2009-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#901602 3 Answer by Brad Larson for UIScrollView Disappears From Interface Builder? Brad Larson 2009-05-23T14:15:33Z 2009-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>