insertRowsAtIndexPaths/deleteRowsAtIndexPaths
랩핑을 사용하여 테이블 셀을 삽입 / 삭제 하고 beginUpdates/endUpdates
있습니다. beginUpdates/endUpdates
rowHeight를 조정할 때도 사용하고 있습니다. 이러한 모든 작업은 기본적으로 애니메이션됩니다.
사용할 때 애니메이션이 종료되었음을 어떻게 알 수 beginUpdates/endUpdates
있습니까?
insertRowsAtIndexPaths/deleteRowsAtIndexPaths
랩핑을 사용하여 테이블 셀을 삽입 / 삭제 하고 beginUpdates/endUpdates
있습니다. beginUpdates/endUpdates
rowHeight를 조정할 때도 사용하고 있습니다. 이러한 모든 작업은 기본적으로 애니메이션됩니다.
사용할 때 애니메이션이 종료되었음을 어떻게 알 수 beginUpdates/endUpdates
있습니까?
답변:
이건 어때?
[CATransaction begin];
[CATransaction setCompletionBlock:^{
// animation has finished
}];
[tableView beginUpdates];
// do some work
[tableView endUpdates];
[CATransaction commit];
이것은 tableView CALayer
애니메이션이 내부적으로 애니메이션을 사용하기 때문에 작동합니다 . 즉, 열린 CATransaction
. 개방 CATransaction
이 존재 하지 않는 경우 (일반적인 경우) 암시 적으로 시작되고 현재 런 루프의 끝에서 종료됩니다. 하지만 여기에서했던 것처럼 직접 시작하면 저것을 사용합니다.
completionBlock
이전 beginUpdates
과 endUpdates
좋아요 를 설정 했습니까 ?
[CATransaction commit]
이전이 아닌 후에 호출해야합니다 [tableView endUpdates]
.
가능한 해결책은 UITableView가 추가되거나 제거 된 행과 일치하도록 콘텐츠 크기를 조정하기 때문에 를 호출 endUpdates
하고 덮어 쓰는 UITableView에서 상속하는 것 setContentSizeMethod
입니다. 이 접근 방식은 reloadData
.
를 endUpdates
호출 한 후에 만 알림이 전송되도록하기 위해 endUpdates
여기에 플래그를 덮어 쓰고 설정할 수도 있습니다.
// somewhere in header
@private BOOL endUpdatesWasCalled_;
-------------------
// in implementation file
- (void)endUpdates {
[super endUpdates];
endUpdatesWasCalled_ = YES;
}
- (void)setContentSize:(CGSize)contentSize {
[super setContentSize:contentSize];
if (endUpdatesWasCalled_) {
[self notifyEndUpdatesFinished];
endUpdatesWasCalled_ = NO;
}
}
다음과 같이 UIView 애니메이션 블록에 작업을 포함 할 수 있습니다.
- (void)tableView:(UITableView *)tableView performOperation:(void(^)())operation completion:(void(^)(BOOL finished))completion
{
[UIView animateWithDuration:0.0 animations:^{
[tableView beginUpdates];
if (operation)
operation();
[tableView endUpdates];
} completion:^(BOOL finished) {
if (completion)
completion(finished);
}];
}
endUpdates
애니메이션이 완료되기 전에 호출 되었습니다.
아직 좋은 솔루션을 찾지 못했습니다 (UITableView 하위 클래스 화 부족). 나는 performSelector:withObject:afterDelay:
지금 사용하기로 결정했습니다 . 이상적이지는 않지만 작업을 완료합니다.
업데이트 : scrollViewDidEndScrollingAnimation:
이 목적으로 사용할 수있는 것 같습니다 (이것은 내 구현에 따라 다르며 주석을 참조하십시오).
scrollViewDidEndScrollingAnimation
단지에 대한 응답이라고 setContentOffset
하고scrollRectToVisible
다음 tableView:willDisplayCell:forRowAtIndexPath:
과 같이 사용할 수 있습니다 .
- (void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath {
NSLog(@"tableView willDisplay Cell");
cell.backgroundColor = [UIColor colorWithWhite:((indexPath.row % 2) ? 0.25 : 0) alpha:0.70];
}
그러나 이미 테이블에있는 셀이 화면에서 화면으로 이동할 때도 호출되어 정확히 찾고있는 것이 아닐 수 있습니다. 방금 모든 UITableView
및 UIScrollView
델리게이트 메서드를 살펴 봤는데 셀이 삽입 된 애니메이션 직후 처리 할 것이없는 것 같습니다.
애니메이션이 끝날 때 호출 할 메서드를 호출하면 안됩니다. endUpdates
?
- (void)setDownloadedImage:(NSMutableDictionary *)d {
NSIndexPath *indexPath = (NSIndexPath *)[d objectForKey:@"IndexPath"];
[indexPathDelayed addObject:indexPath];
if (!([table isDragging] || [table isDecelerating])) {
[table beginUpdates];
[table insertRowsAtIndexPaths:indexPathDelayed withRowAnimation:UITableViewRowAnimationFade];
[table endUpdates];
// --> Call Method Here <--
loadingView.hidden = YES;
[indexPathDelayed removeAllObjects];
}
}
willDisplayCell
. 모든 것이 해결 된 후에 만 시각적 업데이트를해야하기 때문에 애니메이션 이후에 발생해야합니다.
-scrollToRowAtIndexPath:atScrollPosition:animated:
마찬가지입니다.