UrbanApps / UAModalPanel

An animated modal panel alternative for iOS

Home Page:http://code.coneybeare.net/uamodalpanel-an-open-source-modal-panel-alter

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Delay

mariosm opened this issue · comments

Hello,

I am trying to track down a delay. I am getting a delay of around 1.4seconds or so between willShowModalPanel and my layoutSubViews method in my uatitledmodalpanel inherited class.

Any help would be appreciated
m

Hi mariosm ! Can you tell us how did you manage to reduce the delay please ? Thanks.

Hello,

What i did was the following: (some or all must have worked)

  • Minimized the amount of things being done in initwithframe
  • moved all proper setup of my gui controls into didshowmodalpanel and showFromPoint
  • decreased the animation time in the various methods found in UAModalPanel.m and UATitledModalPanel.m

Marios
(Developer of the Apofasi Decision Tool)

Thank you very much mariosm,

it helped me a lot. All my GUI controls is now written in "showAnimationFinished" method of my UIModalPanel inherited class.

Mikl-Jeo