ゴミ箱アニメーション(Viewがゴミ箱に消えていくイメージのアニメーション)に関するメモ。 ゴミ箱のアニメーションを実装する必要があって、色々調べていたところ、iPhoneアプリのメモアプリで利用されている"SuckEffect"というものが使えそう。 ゴミ箱アニメーション http://iappdev.blog130.fc2.com/blog-entry-6.html [UIView beginAnimations:@"suck" context:NULL]; [UIView setAnimationDuration:0.5f]; [UIView setAnimationTransition:103 forView:self.view cache:YES]; [UIView setAnimationPosition:CGPointMake(204, 460)]; [UIView comm