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:
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
Post a Comment