R – Adding UIScrollView using interface builder

cocoainterface-builderiphonescrollview

I am adding a UIScrollView as a subview to the controllers view. After that i am adding 2 views to the scroll view as the content view.

When I am printing the subviews of the scroll views using NSLog(@"Scroll View Subviews : %@", [scrollViewObj subviews]);

then it is displaying 4 subviews , 2 for the views added to the scroll view and it is automatically adding 2 image views ?

I cann't get why the image views are added as subviews to the UIScrollView ?
I am adding the Scroll view and 2 views to the scroll view using the interface builder.

thanks.

Best Answer

I bet those are used for the scroll indicators to the right and bottom of the view.