One Quickie


Implicit Core Animation, with cleanup (Core Animation->General)
    [UIView animateWithDuration: kZoomAnimationDuration
            animations: ^{
            CGRect frame = self.labelZoomTapView.frame;
            self.zoomedLabelView.frame = frame;
            // and change whatever other properties that will lead to animation.
        } completion: ^(BOOL finished) {
            // or whatever cleanup you have to do
            [self.zoomedLabelView removeFromSuperview];
        }];



borkware home | products | miniblog | rants | quickies | cocoaheads
Advanced Mac OS X Programming book

webmonster@borkware.com