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

Popular posts from this blog

c++ - Convert big endian to little endian when reading from a binary file -

C#: Application without a window or taskbar item (background app) that can still use Console.WriteLine() -

unicode - Are email addresses allowed to contain non-alphanumeric characters? -