UIView animateWithDuration: анимации: завершение: применяет преобразование, а не анимацию - PullRequest
4 голосов
/ 19 марта 2012

пытается вызвать это сообщение от наблюдения КВО.После загрузки изображения это сообщение отправляется.Сообщение в блоке завершения также содержит анимацию, которая работает правильно (корректно анимируется).Эта анимация применяет преобразование без анимации (ожидает длину анимации, затем просто переходит в конечное состояние).

/**
 *  Discover the subview with the supplied tag, attach the fullsize image to the view
 *  scale to fullsize and begin retract.
 *  @param viewTag int - #FUTURE USE# - The tag of the view to be animated.
 *  @param image UIImage - #FUTURE USE# - The image to be applied to the view.
 *  @return void
 */
- (void)animateViewWithTag:(int)viewTag andImage:(UIImage *)image {

    Panel *activePanel = [self.panels objectAtIndex:currentIndex];
    UIView *activePanelView = [self.view viewWithTag:activePanel.panelId];

    // Display the transition to the fullsize version of the panel image.
    // Determine the scale that needs to be applied to the view to show
    // the image in the appropriate scaling. If scaled image is greater than
    // the size of the screen, find the best fit.

    float scale = image.size.width / activePanelView.frame.size.width;

    if (image.size.width > self.view.window.frame.size.width || image.size.height > self.view.window.frame.size.height) {
        // The image will scale beyond the bounds of the window, scale must be adjusted.
        scale = self.view.window.frame.size.width / activePanelView.frame.size.width;
    }

    CGAffineTransform transform = CGAffineTransformMakeScale(scale, scale);

    [UIView animateWithDuration:1.0
                     animations:^{
                         // Get the fullsize image and display it in the growing panel.
                         [activePanelView setTransform:transform];
                         [NSThread sleepForTimeInterval:3.0];
                     } 
                     completion:^(BOOL finished) {
                         [self retractImage:activePanelView];
                     }];
}


#pragma mark - KVO

- (void)observeValueForKeyPath:(NSString *)keyPath ofObject:(id)object change:(NSDictionary *)change context:(void *)context {       
    int tmpInt = (int)context;        
    UIImage *tmpImage = [change objectForKey:NSKeyValueChangeNewKey];

    if ( keyPath == @"imgOriginal" ) {
        [self animateViewWithTag:[(Panel *)object panelId] andImage:tmpImage];             
    }   

}

1 Ответ

1 голос
/ 20 марта 2012

Какова цель сна сна?

Если вы отключите основной поток, он не будет обновлять анимацию.

И если вы не вызываете это в главном потоке, то это также не сработает, потому что анимация UIKit не является поточно-безопасной и может надежно использоваться только из основного потока.

...