UIView bottom view like classic iOS -


i have problem project, @ point don't know how to. problem "scrolling" or gesture uiview. need create bottom view classic ios bottom function bar animation. view stops @ example 100px bottom. tutorial or this?

image here:

enter image description here

try below.

   self.yourview.frame =  cgrectmake(0, self.view.frame.size.height, self.yourview.frame.size.width, self.yourview.frame.size.height);     [uiview animatewithduration:1.0 animations:^{         self.yourview.frame = cgrectmake(0, self.view.frame.size.height - 100, self.yourview.frame.size.width, self.yourview.frame.size.height);     }]; 

let me know if face difficulty in it..

refer tutorial more info..


Comments

Popular posts from this blog

python - Installing PyDev in eclipse is failed -

PHP OOP-based login system -

c# - Nested Internal Class with Readonly Hashtable throws Null ref exception.. on assignment -