am trying to build buttons list slides from bottom of screen when some button pressed

what's it's name ?!

i tried to build a view with 200px height and then inserting it via

ShareViewController * svc=[[ShareViewController alloc ]initWithNibName:@"ShareViewController" bundle:nil];
[self presentModalViewController:myView animated:YES];

but it down't work ?!

enter image description here

link|improve this question

36% accept rate
feedback

2 Answers

up vote 3 down vote accepted

This is standard UIActionSheet control which goes with UIKit, so you don't need to create extra controllers to achieve the effect you want.

link|improve this answer
thanks :) , that's what i needed :) – Yahia Sep 19 '11 at 14:54
feedback

Like @Vladimir said, you are looking at a UIActionSheet. If you are actually trying to build that exact one, you should know it comes from ShareKit: http://getsharekit.com/

link|improve this answer
yes , this image taken from ShareKit , thanks alot :) – Yahia Sep 19 '11 at 18:23
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.