Top "Subview" questions

subview is an abstract representation of a nested hierarchy of views in a MVC framework

Adding a UINavigationController as a subview of UIView

I'm trying to display a UILabel on top of a UINavigationController. The problem is that when I add the UILabel …

cocoa-touch uiview uiviewcontroller uinavigationcontroller subview
How to Resize View so That Its Subviews Get Resized Too

My window adds a subview (my root ViewController's view). Such subview is superview of several other subviews. I have just …

xcode resize frame subview superview
send subview to the back

I know of a function that brings a view to the front. [self.view bringSubviewToFront:myView]; I am wondering if …

iphone uiview subview
How to give this picker view a datasource

Here I am adding a pickerview programaticly - (void)viewDidLoad { [super viewDidLoad]; CGRect pickerFrame = CGRectMake(0,280,321,200); UIPickerView *myPickerView = [[UIPickerView alloc] init]; //…

iphone ios sdk uipickerview subview
UIView. How Do I Find the Root SuperView Fast?

I have a random child view in a view hierarchy. What is the best/fastest/cleverest way to get to …

ios uiview subview superview
iOS - passing Sender (button) name to addSubview

I have a main view with 3 buttons. Clicking on any of the buttons adds a SubView. The buttons have different …

ios uibutton subview viewdidload sender
how to detect event touch in subview or how to make parent view was touched when we touch subview?

I have 2 UIView. the first one is a parent view the second one is a subview, how can we detect …

iphone xcode uiview subview
Animating UIView frame size change with autoresizing subviews

I have a UIView which contains two subviews. I would like to change the superview's frame size with an animation …

iphone ios animation subview
Hide UIView subviews

I have UIView which have n number of subviews. Let say n as 600 subviews. I know there is a way …

iphone objective-c uiview subview
iphone - determine if touch occurred in subview of a uiview

In a subclass of UIView I have this: -(BOOL)pointInside:(CGPoint)point withEvent:(UIEvent *)event { if(touch occurred in …

iphone events uiview touch subview