特定のセルを事前選択する必要があるプロジェクトに取り組んでいます。
-willDisplayCell
を使用してセルを事前選択できますが、ユーザーが他のセルをクリックしたときに選択を解除することはできません。
- (void)tableView:(UITableView*)tableView
willDisplayCell:(UITableViewCell*)cell
forRowAtIndexPath:(NSIndexPath*)indexPath
{
AppDelegate_iPad *appDelegte =
(AppDelegate_iPad *)[[UIApplication sharedApplication] delegate];
if ([appDelegte.indexPathDelegate row] == [indexPath row])
{
[cell setSelected:YES];
}
}
- (void)tableView:(UITableView *)tableView
didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
AppDelegate_iPad *appDelegte =
(AppDelegate_iPad *)[[UIApplication sharedApplication] delegate];
NSIndexPath *indexpath1 = appDelegte.indexPathDelegate;
appDelegte.indexPathDelegate = indexPath;
[materialTable deselectRowAtIndexPath:indexpath1 animated:NO];
}
手伝ってくれますか?
このコードを使用
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
//Change the selected background view of the cell.
[tableView deselectRowAtIndexPath:indexPath animated:YES];
}
override func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
//Change the selected background view of the cell.
tableView.deselectRow(at: indexPath, animated: true)
}
テーブルビューデリゲートのdidSelectRowAtIndexpath
(またはどこからでも)で次のメソッドを使用します
[myTable deselectRowAtIndexPath:[myTable indexPathForSelectedRow] animated:YES];
これを試して:
for (NSIndexPath *indexPath in tableView.indexPathsForSelectedRows) {
[tableView deselectRowAtIndexPath:indexPath animated:NO];
}
デリゲートメソッドで正しいかどうかを確認してください。例えば;
-(void) tableView:(UITableView *)tableView didDeselectRowAtIndexPath:(NSIndexPath *)indexPath
for
-(void) tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
このためにSwiftで拡張機能を作成すると役立つ場合があります。
Swift 4:
Swift拡張機能(UITableViewExtension.Swiftファイルなど):
import UIKit
extension UITableView {
func deselectSelectedRow(animated: Bool)
{
if let indexPathForSelectedRow = self.indexPathForSelectedRow
{
self.deselectRow(at: indexPathForSelectedRow, animated: animated)
}
}
}
例:
override func viewWillAppear(_ animated: Bool)
{
super.viewWillAppear(animated)
self.tableView.deselectSelectedRow(animated: true)
}
スウィフト4:
tableView.deselectRow(at: indexPath, animated: true)
セルを選択どおりに設定することに加えて、セルが選択されていることをtableViewに通知する必要もあります。 -tableView:selectRowAtIndexPath:animated:scrollPosition:
への呼び出しをwillDisplayCell:
メソッドに追加すると、通常どおり選択を解除できます。
- (void)tableView:(UITableView*)tableView
willDisplayCell:(UITableViewCell*)cell
forRowAtIndexPath:(NSIndexPath*)indexPath
{
AppDelegate_iPad *appDelegte = (AppDelegate_iPad *)[[UIApplication sharedApplication] delegate];
if ([appDelegte.indexPathDelegate row] == [indexPath row])
{
// SELECT CELL
[cell setSelected:YES];
// TELL TABLEVIEW THAT ROW IS SELECTED
[tableView selectRowAtIndexPath:indexPath animated:NO scrollPosition:UITableViewScrollPositionNone];
}
}
奇妙なスクロール動作を避けるために、必ずUITableViewScrollPositionNoneを使用してください。
これはSwift 4のソリューションです
in tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath)
追加するだけ
tableView.deselectRow(at: indexPath, animated: true)
それは魅力のように機能します
例:
func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
tableView.deselectRow(at: indexPath, animated: true)
//some code
}
これは動作するはずです:
[tableView deselectRowAtIndexPath:indexpath1 animated:NO];
MaterialTableとtableViewが同じオブジェクトを指していることを確認してください。
マテリアルは、Interface BuilderのtableViewに接続されていますか?
最初のクリックでテーブルセルを選択し、2番目のクリックで選択を解除する場合は、次のコードを使用する必要があります。
- (void)tableView:(UITableView *)tableView
didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
if (self.selectedIndexPath &&
[indexPath compare:self.selectedIndexPath] == NSOrderedSame) {
[tableView deselectRowAtIndexPath:indexPath animated:YES];
self.selectedIndexPath = nil;
}
else {
self.selectedIndexPath = indexPath;
}
}
Saikiransのソリューションに基づいて、私はこれを書きました。 .mファイル:
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
if(selectedRowIndex && indexPath.row == selectedRowIndex.row) {
[tableView deselectRowAtIndexPath:indexPath animated:YES];
selectedRowIndex = nil;
}
else { self.selectedRowIndex = [indexPath retain]; }
[tableView beginUpdates];
[tableView endUpdates];
}
そしてヘッダーファイルで:
@property (retain, nonatomic) NSIndexPath* selectedRowIndex;
私もあまり経験がないので、メモリリークなどを再確認してください。
スウィフト4:
func tableView(_ tableView: UITableView, willSelectRowAt indexPath: IndexPath) -> IndexPath? {
let cell = tableView.cellForRow(at: indexPath)
if cell?.isSelected == true { // check if cell has been previously selected
tableView.deselectRow(at: indexPath, animated: true)
return nil
} else {
return indexPath
}
}
Swift 2.0:
tableView.deselectRowAtIndexPath(indexPath, animated: true)
これを試して
[self.tableView deselectRowAtIndexPath:[self.tableView indexPathForSelectedRow] animated:YES];
これを試してもらえますか?
- (void)tableView:(UITableView *)tableView
didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
AppDelegate_iPad *appDelegte =
(AppDelegate_iPad *)[[UIApplication sharedApplication] delegate];
NSIndexPath *indexpath1 = appDelegte.indexPathDelegate;
appDelegte.indexPathDelegate = indexPath;
UITableViewCell *prevSelectedCell = [tableView cellForRowAtIndexPath: indexpath1];
if([prevSelectedCell isSelected]){
[prevSelectedCell setSelected:NO];
}
}
それは私のために働いた。
NSIndexPath * index = [self.menuTableView indexPathForSelectedRow];
[self.menuTableView deselectRowAtIndexPath:index animated:NO];
コードに従ってこのコードを配置すると、セルの選択が解除されます。
Swift 3.0:
レイウェンダリッヒSwiftスタイルガイドのプロトコル適合性セクション に従って、関連するメソッドをグループ化するために、この拡張機能をView Controllerクラスの下に配置します。
// your view controller
class MyViewcontroller: UIViewController {
// class stuff here
}
// MARK: - UITableViewDelegate
extension MyViewcontroller: UITableViewDelegate {
// use the UITableViewDelegate method tableView(_:didSelectRowAt:)
func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
// your code when user select row at indexPath
// at the end use deselectRow
tableView.deselectRow(at: indexPath, animated: true)
}
}
Swift 3/4
ViewControllerで:
func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
tableView.deselectRow(at: indexPath, animated: true)
}
カスタムセル内:
override func awakeFromNib() {
super.awakeFromNib()
selectionStyle = .none
}
Swift
func tableView(tableView: UITableView, didSelectRowAtIndexPath indexPath: NSIndexPath) {
// your code
// your code
// and use deselect row to end line of this function
self.tableView.deselectRowAtIndexPath(indexPath, animated: true)
}
func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
tableView.deselectRow(at: indexPath, animated: true)
}
スイフト3
私もこれに遭遇しました-あなたがナビゲートしたり、テーブルビューに戻ったりすると、通常、以前に選択された行の選択が解除されません。私はこのコードをTable View Controllerに入れましたが、うまくいきます:
override func viewDidAppear(_ animated: Bool) {
if let lastSelectedRow = tableView.indexPathForSelectedRow {
tableView.deselectRow(at: lastSelectedRow, animated: true)
}
}
Swift 3.
tableView.deselectRow(at: indexPath, animated: true)
プリロードされたデータのために最初にクリックされたときに選択解除(DidDeselectRowAt)を起動するには、最初にクリックすると行が選択解除されるように、行がすでに選択されていることをtableViewに通知する必要があります。
// Swift 3:
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
if tableView[indexPath.row] == "data value"
tableView.selectRow(at: indexPath, animated: false, scrollPosition: UITableViewScrollPosition.none)
}
}
私が見つけたのは、セルをselectedとして設定することに加えて、指定したインデックスパスの行をselectに知らせる必要があるということです。
// Swift 3+
override func tableView(_ tableView: UITableView, willDisplay cell: UITableViewCell, forRowAt indexPath: IndexPath) {
if appDelegate.indexPathDelegate.row == indexPath.row {
self.tableView.selectRow(at: indexPath, animated: true, scrollPosition: .none)
cell.setSelected(true, animated: true)
}
}