iphone - Adding a UIView below the screen -
i have uiviewcontroller added using addsubview hanging out on top of uiviewcontroller. added view hang out below screen called nice animation when need it.
is there way add subview screen @ location?
you modify .frame
property, e.g.
[self.view addsubview:theview]; cgrect newframe = theview.frame; newframe.origin.y = self.view.bounds.size.height; theview.frame = newframe;
Comments
Post a Comment