漂浮

来源:互联网 发布:srt字幕制作 mac 编辑:程序博客网 时间:2024/04/30 11:06

#define TIME_INTERVAL           1.3f


    [self performSelector:@selector(autoRun)

               withObject:nil

               afterDelay:TIME_INTERVAL

     ];


- (void)autoRun {

    if (!canfloat) {

        return;

    }


   //  do logic

    

    [self performSelector:@selector(autoRun)

               withObject:nil

               afterDelay:TIME_INTERVAL

     ];

    

    stepIndex ++;

}


- (void)floatView:(UIView*)view rect:(CGRect)rect {

    

[UIViewbeginAnimations:@"animationID"context:nil];

[UIViewsetAnimationDuration:TIME_INTERVAL];

    [view setFrame:rect];

[UIViewsetAnimationTransition:UIViewAnimationTransitionNoneforView:view cache:YES];

[UIViewcommitAnimations];

}



原创粉丝点击