让tableView的某行移动到tableView的某位置

时间:2023-03-09 15:21:41
让tableView的某行移动到tableView的某位置

NSIndexPath *indexPath = [NSIndexPath indexPathForRow:lineNumber inSection:0];

[lrcTableView selectRowAtIndexPath:<#(NSIndexPath *)#> animated:<#(BOOL)#> scrollPosition:<#(UITableViewScrollPosition)#>]

typedef NS_ENUM(NSInteger, UITableViewScrollPosition) {
    UITableViewScrollPositionNone,
    UITableViewScrollPositionTop,    
    UITableViewScrollPositionMiddle,   
    UITableViewScrollPositionBottom