0
UITableviewがあります。私が行を挿入するとき、私はこのメソッドを呼び出します。UITableViewのリッスンユーザーがそのデリゲートではないスクロール
[tableView insertRowsAtIndexPaths:@[lastRow] withRowAnimation:UITableViewRowAnimationLeft];
[tableView scrollToRowAtIndexPath:lastRow atScrollPosition:UITableViewScrollPositionBottom animated:NO];
最新のセルショーを維持します。どのように私はユーザーがテーブルビューをスクロールすることができます。 私はUIScrollViewのデリゲートを追加しようとした - selectedIndex
ここ
NSIndexPath *indexPath = [NSIndexPath indexPathForRow:selectedIndex inSection:0];
[tableView scrollToRowAtIndexPath:indexPath atScrollPosition:UITableViewScrollPositionBottom animated:YES];
私のためにそれが正常に動作して私はあなたがコードの下に試すべきだと思い
scrollViewDidScroll
が、この方法でも
[tableView scrollToRowAtIndexPath:atScrollPosition:animated:]
コードはうまく動作しますが、私はユーザーが自分のtableViewをスクロールして、その後いくつかのことをしたいのですが –