好的..这是整个场景
这个概念是在屏幕上显示多个订单,用户可以向左或向右滑动以查看下一个订单。一旦订单被接受或拒绝,订单视图会向下滑动,如果订单结束,则会被旁边的或上一个替换。
我有一个标签栏视图,其中包含一个简单的 UIScrollView 和几个按钮(接受和拒绝)。在 ViewDidLoad 中,我准备了一个 Orders 数组,使用 Nib 文件初始化 ViewController(等于总订单)并将这些 ViewController 的视图添加到 ScrollView 并设置 ScrollView 的内容大小等。(用于垂直和水平滚动)
当用户点击 AcceptButton 时,会执行一个动画,将 UIScrollView 中的可见视图向下滑动,然后将其从超级视图中移除。
动画代码执行如下。
BOOL lastPage = NO;
BOOL ordersEmpty = NO;
if (self.views.count == 1){
ordersEmpty = YES;
lastPage = YES;
}
UIViewController *controller2;
if (self.views.count == page+1 && !ordersEmpty){
lastPage = YES;
controller2 = [self.views objectAtIndex:page-1];
} else if (!ordersEmpty){
controller2 = [self.views objectAtIndex:page+1];
}
[UIView animateWithDuration:1.5 animations:^{
CGRect frame = controller.view.frame;
frame.origin.y = frame.size.height + 100;
controller.view.frame = frame;
if (lastPage == NO){
CGRect frame2 = controller2.view.frame;
frame2.origin.x = frame.origin.x;
controller2.view.frame = frame2;
}else{
// [self.scrollView scrollRectToVisible:controller2.view.frame animated:YES];
}
} completion:^(BOOL value){
[controller.view removeFromSuperview];
[self.views removeObject:controller];
totalPages.text = [NSString stringWithFormat:@"%i", self.views.count];
// currentPage.text = [NSString stringWithFormat:@"%i",
self.pageControl.numberOfPages = self.views.count;
if (lastPage && !ordersEmpty){
[self.scrollView scrollRectToVisible:controller2.view.frame animated:YES];
lastPageMoving = YES;
}else if (ordersEmpty){
UILabel *label = [[UILabel alloc] initWithFrame:CGRectMake(0, 0, 320, 30)];
label.text = @"There are currently no notifications";
label.textAlignment = UITextAlignmentCenter;
label.center = CGPointMake(self.scrollView.frame.size.width/2, self.scrollView.frame.size.height/3);
[self.scrollView addSubview:label];
[label release];
ofPages.text = @"";
totalPages.text = @"";
currentPage.text = @"";
self.scrollView.contentSize = CGSizeMake(320, 267);
}
int i = 0;
for (UIViewController *c in self.views)
{
c.view.frame = CGRectMake(self.scrollView.frame.size.width * i, 0, c.view.frame.size.width, c.view.frame.size.height);
i++;
}
if (controller2 != nil)
{
if ([controller2 isKindOfClass:[CancelledController class]]) {
self.acceptButton.hidden = YES;
[self.declineButton setTitle:@"Close" forState:UIControlStateNormal];
[self.declineButton setTitle:@"Close" forState:UIControlStateHighlighted];
}else{
self.acceptButton.hidden = NO;
[self.declineButton setTitle:@"Decline" forState:UIControlStateNormal];
[self.declineButton setTitle:@"Decline" forState:UIControlStateHighlighted];
}
}
}];
动画工作正常,但删除的视图被释放
当最后一个视图被接受时,应用程序会在 [UIView animateWithDuration:animations:completion] 方法调用处以 exc_bad_access 崩溃。
NSZombies 没有检测到确切的泄漏点/原因..
经过广泛的研究,我认为这可能是由于使用了块......内存管理很好,因为如果我过度释放任何东西,NSZombies 会指出它。
(代码在模拟器中运行良好 - 没有任何错误)
我制作了一个视频来演示动画是如何工作的。它是模拟器的,所以这里没有错误,但是当我在设备上运行它时,只要我按下关闭按钮,应用程序就会崩溃。
一个有趣的事情是,如果我先关闭第二个订单然后再接受第一个订单,代码也可以正常工作=(确实非常令人困惑..!!
http://www.mediafire.com/?w1up9g9u6w0ucrn
该项目针对 iOS 4.0