我想实现一个特殊的动画,我想知道是否有人已经这样做了。 当选择多个邮件时,每个人都知道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];
}
}
有人可以帮忙吗?
谢谢,亲切的问候,朱利安