Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is it possible to access a UITableView's ScrollView In Code From A Nib?

Right now I am creating a UITableView in a FlipsideView nib. I don't seem to be able to change the background of the table view from within interface builder. I can fix this by creating an outlet and then setting the background. However, I want to give the scroll view rounded corners in order to create a look similar to the iPhone weather/stock app table views. Is there a way to access the scroll view's property in code so that I can set the rounded corners?

like image 667
rickharrison Avatar asked Nov 09 '09 18:11

rickharrison


1 Answers

A UITableView doesn't have a UIScrollView, it is a UIScrollView. UITableView is a subclass of UIScrollView as can be seen it the documentation. Any properties of functionality of UIScrollView you want to access can be directly accessed via the table view.

Similarly, UITableViewDelegates are all UIScrollViewDelegates.

like image 173
Louis Gerbarg Avatar answered Sep 17 '22 17:09

Louis Gerbarg