UIView邮件般的主食动画

时间:2012-06-13 02:13:58

标签: animation uitableview in-app-purchase

我想实现一个特殊的动画,我想知道是否有人已经这样做了。 当选择多个邮件时,每个人都知道iPad邮件真的很酷的主食效果。

我现在想把这个动画带到我的iPad应用程序中。我有一个UITableView可用于应用内购买,我希望用户能够一次购买多个购买。

用户可以在tableView中选择多个产品,我现在希望自定义UITableViewCell中的图像能够与这种非常酷的iPad效果一起“装订”。

我也希望细胞进入这个堆叠。这是我的代码(很可能我会遇到来自单元格的照片的性能问题):

- (IBAction)setEditingTableView:(id)sender
{
    if ([itemsTableView isEditing]) {
        for (NSIndexPath *cellPath in [itemsTableView indexPathsForSelectedRows]) {
            UITableViewCell *cell = [itemsTableView cellForRowAtIndexPath:cellPath];
            if ([cell isSelected]) {
                [UIView animateWithDuration:1.0 animations:^{
                    [[cell image] setFrame:[stackView frame]];
                    [[cell image] setCenter:[stackView center]];
                }];
            }
        }
        [itemsTableView setEditing:NO];
        [sender setStyle:UIBarButtonItemStyleBordered];
    }
    else {
        [itemsTableView setEditing:YES];
        [sender setStyle:UIBarButtonItemStyleDone];
    }
}

enter image description here

有人可以帮忙吗?

谢谢,亲切的问候,朱利安

0 个答案:

没有答案