I’m a newbie of Xcode and Objective-c. Recently I wanna do a task about popping up tableviews. When a button is pressed, the tableview should pop up from the bottom of the screen. The tableview will contain just a few items so I don’t wanna it occupy full screen. I read the manual and found UIModalPresentationStyle, but it seems not fulfill my requirements. So what’s the more accurate methods I can use?
Share
While @Bharat J’s answer is correct, those methods are deprecated in iOS 4.0.
The latest and greatest implementation is
+ (void)animateWithDuration:(NSTimeInterval)duration animations:(void (^)(void))animationsImplemented as: