문제

i've created a login screen via a modalviewcontroller. But certainly i have a problem to display a uiactivityindicator once the loginbutton was pressed. Instead the activityindicator seem to be displayed for a minimal period of time, when releasing the modalviewcontroller. Does anyone know the problem. Could anybody help me out? Thanks a lot. Greetz

도움이 되었습니까?

해결책

I've got the solution.

Apple seems to combine animations. So the animation of dismissng the modalview and startanimating function of the uiactivityindicator are combined to one action and the animation of the activityindicator will be never shown.

Simple hack: Just wait with the dismissal of the modalview for a short time e.g.

[self performSelector:@selector(hideLogin) withObject:nil afterDelay:0.1];
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top