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


135

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

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

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


私は同じ問題に遭遇し、単にリンクを微:stackoverflow.com/questions/5324501/...私はそれがあなたのために役立つことを願っています。
マイケル

回答:


109

リファレンスドキュメントから

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

私がすることは:

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

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


4
または、プログラムで行を選択するときに、tableView:didSelectRowAtIndexPath:を自分で呼び出すことができます(デリゲートとして配線したクラスで)。
Kendall Helmstetter Gelner、2010

3
この方法は私にはハックのように思えます、それは仕事を成し遂げましたが、私はそれを行うより良い方法があるはずだと思います。
Tapan Thaker 2012年

1
「doSomethingWithRowAtIndexPath」という呼び出しを作成する必要があるとは本当に思いません。デリゲートメソッドを呼び出して、デリゲートメソッドを実装した場所からdidSelectロジックを実行するために必要な引数を渡すことはできませんか?
ImpactZero

111

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)

63

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

UITableViewScrollPositionNonescrollPositionを渡すだけで、ユーザーには動きが表示されません。


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

[theTableView.delegate tableView:theTableView didSelectRowAtIndexPath:indexPath]

あなたの後にselectRowAtIndexPath:animated:scrollPosition:そのハイライトは、関連するすべてのロジックと同様に行われます。


すみません、それは私が使っているものです。誤ってscrollToRowAtIndexPathを設定しました。質問を更新しました。scrollToRowAtIndexPathはセルのみを強調表示します。
4thSpace 2010年

2
うん、ごめんなさい。それは私が投稿したドキュメントリンクのすぐそこにdidSelectRowAtIndexPathを起動しないと述べています。私は読むことを学ぶ必要があります。
10

@anq:どうもありがとうございました!カスタムセルでdidSelectRowAtIndexPath:indexPathを呼び出すときに役立ちます。
ベントレー

21

行を選択する場合は、これが役立ちます

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

これも行を強調表示します。その後、委任

 [someTableView.delegate someTableView didSelectRowAtIndexPath:indexPath];

18

Swift 3/4/5ソリューション

行を選択

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

行を選択解除

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

私にとっては、「。delegate?」鍵でした (Swift 4.5)
KoreanXcodeWorker

4

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

2
質問はセグエとは何の関係もありませんでした。
deleted_user 2012

はい、あなたの回答の何も質問に関連していません
dulgan

2
この回答に感謝します。ユーザーが同じ動作を実現したいがストーリーボードを使用している場合、これは完全に機能します。
Bijoy Thangaraj
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.