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

ruby - When to use an ORM (Sequel, Datamapper, AR, etc.) vs. pure SQL for querying -

php - PHPDoc: @return void necessary? -

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