web-dev-qa-db-ja.com

テーブルビューの行をプログラムで選択する

UITableView行をプログラムで選択して、

- (void)tableView:(UITableView *)tableView 
        didSelectRowAtIndexPath:(NSIndexPath *)indexPath

実行されますか? selectRowAtIndexPathは行のみを強調表示します。

133
4thSpace

参照ドキュメント: から

このメソッドを呼び出しても、デリゲートはtableView:willSelectRowAtIndexPath:またはtableView:didSelectRowAtIndexPath:メッセージを受信せず、オブザーバーにUITableViewSelectionDidChangeNotification通知を送信しません。

私がやることは:

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
    [self doSomethingWithRowAtIndexPath:indexPath];
}

そして、selectRowAtIndexPathを呼び出したい場所から、代わりにdoSomethingWithRowAtIndexPathを呼び出します。さらに、UIフィードバックを発生させる場合は、selectRowAtIndexPathを追加で呼び出すこともできます。

109
Jaanus

ヤヌスが言ったように:

この(-selectRowAtIndexPath:animated:scrollPosition :)メソッドを呼び出しても、デリゲートはtableView:willSelectRowAtIndexPath:またはtableView:didSelectRowAtIndexPath:メッセージを受信せず、オブザーバーにUITableViewSelectionDidChangeNotification通知を送信しません。

したがって、delegateメソッドを自分で呼び出す必要があります。

例えば:

Swift 3バージョン:

let indexPath = IndexPath(row: 0, section: 0);
self.tableView.selectRow(at: indexPath, animated: false, scrollPosition: UITableViewScrollPosition.none)
self.tableView(self.tableView, didSelectRowAt: indexPath)

ObjectiveCバージョン:

NSIndexPath *indexPath = [NSIndexPath indexPathForRow:0 inSection:0];
[self.tableView selectRowAtIndexPath:indexPath 
                            animated:YES 
                      scrollPosition:UITableViewScrollPositionNone];
[self tableView:self.tableView didSelectRowAtIndexPath:indexPath];

Swift 2.3バージョン:

 let indexPath = NSIndexPath(forRow: 0, inSection: 0);
 self.tableView.selectRowAtIndexPath(indexPath, animated: false, scrollPosition: UITableViewScrollPosition.None)
 self.tableView(self.tableView, didSelectRowAtIndexPath: indexPath)
107
dulgan

UITableViewの selectRowAtIndexPath:animated:scrollPosition: でうまくいくはずです。

ScrollPositionにUITableViewScrollPositionNoneを渡すだけで、ユーザーには動きが見えません。


アクションを手動で実行することもできます。

[theTableView.delegate tableView:theTableView didSelectRowAtIndexPath:indexPath]

selectRowAtIndexPath:animated:scrollPosition:の後、ハイライトと関連するロジックが発生します。

63
anq

あなたがいくつかの行を選択したい場合、これはあなたを助けます

NSIndexPath *indexPath = [NSIndexPath indexPathForRow:0 inSection:0];
[someTableView selectRowAtIndexPath:indexPath 
                           animated:NO 
                     scrollPosition:UITableViewScrollPositionNone];

これにより、行も強調表示されます。その後、委任

 [someTableView.delegate someTableView didSelectRowAtIndexPath:indexPath];
21
Nazir

Swift 3.0ソリューション

Select Row

let indexPath = IndexPath(row: 0, section: 0)
tblView.selectRow(at: indexPath, animated: true, scrollPosition: .bottom)
myTableView.delegate?.tableView!(myTableView, didSelectRowAt: indexPath)

DeSelect Row

let deselectIndexPath = IndexPath(row: 7, section: 0)
tblView.deselectRow(at: deselectIndexPath, animated: true)
tblView.delegate?.tableView!(tblView, didDeselectRowAt: indexPath)
13
Sourabh Sharma

IPadおよびiPhoneプラットフォームには2つの異なる方法があるため、両方を実装する必要があります。

  • 選択ハンドラー
  • セグエ。

    NSIndexPath *indexPath = [NSIndexPath indexPathForRow:0 inSection:0];
    [self.tableView selectRowAtIndexPath:indexPath animated:NO scrollPosition:UITableViewScrollPositionNone];
    
    // Selection handler (for horizontal iPad)
    [self tableView:self.tableView didSelectRowAtIndexPath:indexPath];
    
    // Segue (for iPhone and vertical iPad)
    [self performSegueWithIdentifier:"showDetail" sender:self];
    
3

このカテゴリを使用して、表の行を選択し、遅延後に特定のセグエを実行します。
これをviewDidAppearメソッド内で呼び出します。

[tableViewController delayedSelection:withSegueIdentifier:]


@implementation UITableViewController (TLUtils)

-(void)delayedSelection:(NSIndexPath *)idxPath withSegueIdentifier:(NSString *)segueID {
    if (!idxPath) idxPath = [NSIndexPath indexPathForRow:0 inSection:0];                                                                                                                                                                 
    [self performSelector:@selector(selectIndexPath:) withObject:@{@"NSIndexPath": idxPath, @"UIStoryboardSegue": segueID } afterDelay:0];                                                                                               
}

-(void)selectIndexPath:(NSDictionary *)args {
    NSIndexPath *idxPath = args[@"NSIndexPath"];                                                                                                                                                                                         
    [self.tableView selectRowAtIndexPath:idxPath animated:NO scrollPosition:UITableViewScrollPositionMiddle];                                                                                                                            

    if ([self.tableView.delegate respondsToSelector:@selector(tableView:didSelectRowAtIndexPath:)])
        [self.tableView.delegate tableView:self.tableView didSelectRowAtIndexPath:idxPath];                                                                                                                                              

    [self performSegueWithIdentifier:args[@"UIStoryboardSegue"] sender:self];                                                                                                                                                            
}

@end
3
Jonathan Kolyer