UITableView.MoveRow(NSIndexPath, NSIndexPath) 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
행을 에서 fromIndexPath
로 toIndexPath
이동합니다.
[Foundation.Export("moveRowAtIndexPath:toIndexPath:")]
public virtual void MoveRow (Foundation.NSIndexPath fromIndexPath, Foundation.NSIndexPath toIndexPath);
abstract member MoveRow : Foundation.NSIndexPath * Foundation.NSIndexPath -> unit
override this.MoveRow : Foundation.NSIndexPath * Foundation.NSIndexPath -> unit
매개 변수
- fromIndexPath
- NSIndexPath
NSIndexPath 원래 행을 나타내는 입니다.
- toIndexPath
- NSIndexPath
원하는 위치입니다.
- 특성
설명
또는 DeleteRows(NSIndexPath[], UITableViewRowAnimation)와 달리 InsertRows(NSIndexPath[], UITableViewRowAnimation) 행 배열을 이동하는 함수는 없습니다. 대신 애플리케이션 개발자는 이 함수를 반복적으로 호출해야 합니다. 이 함수가 애니메이션 블록 내에서 BeginUpdates()-EndUpdates() 호출되면 모든 행 조작이 단일 애니메이션으로 발생합니다.