iOS move view


[BackgroundView addSubview:hint];
[self.view addSubview:BackgroundView];
[BackgroundView moveTo:CGPointMake(0, 0) duration:0.6 option:UIViewAnimationOptionCurveEaseInOut];
NSTimer *timer = [NSTimer scheduledTimerWithTimeInterval:0.6 target:self selector:@selector(removeHintBanner) userInfo:nil repeats:NO];

- (void) removeHintBanner
{
    [BackgroundView moveTo:CGPointMake(0, -15) duration:1.2 option:UIViewAnimationOptionCurveEaseInOut];
}

0 意見: