uinavigationcontroller - How to display UIActionSheet just below top navigation status bar on iPhone -


i display action sheet sliding below top status bar.

when use navigationbar view show in, sheet still displayed @ bottom of screen. how can show originating top instead?

the class i'm calling following code 'uiviewcontroller'

uiactionsheet *sheet = [[uiactionsheet alloc] initwithtitle:@"hello" delegate:nil            cancelbuttontitle:nil            destructivebuttontitle:nil            otherbuttontitles:nil];  uinavigationbar *navbar = self.navigationcontroller.navigationbar;  [sheet showinview:navbar]; 

i've seen apps show sliding out drawer of sort status bar is.(eg: twitterrific) how done?

apple has stated action sheets work same way , slide in same direction. hence there no advertised way manipulate animations , such.


Comments

Popular posts from this blog

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

C#: Application without a window or taskbar item (background app) that can still use Console.WriteLine() -

unicode - Are email addresses allowed to contain non-alphanumeric characters? -