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#: Application without a window or taskbar item (background app) that can still use Console.WriteLine() -

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

openssl - Load PKCS#8 binary key into Ruby -