web-dev-qa-db-ja.com

SwiftのIntに基づいてUITableViewの特定の行を更新します

私はSwiftの初期開発者であり、UITableViewを含む基本的なアプリを作成しています。私はテーブルの特定の行を更新したい:

self.tableView.reloadRowsAtIndexPaths(paths, withRowAnimation: UITableViewRowAnimation.none)

そして、リフレッシュされる行は、rowNumberという名前のIntからのものにしたい

問題は、これを行う方法がわからず、検索したすべてのスレッドがObj-C用であることです

何か案は?

70
BobRon

行番号とセクション番号を使用してNSIndexPathを作成し、次のようにリロードできます。

let indexPath = NSIndexPath(forRow: rowNumber, inSection: 0)
tableView.reloadRowsAtIndexPaths([indexPath], withRowAnimation: UITableViewRowAnimation.Top)

この例では、テーブルにはセクションが1つ(つまり0)しかないと想定していますが、それに応じてその値を変更できます。

Swift 3.0の更新:

let indexPath = IndexPath(item: rowNumber, section: 0)
tableView.reloadRows(at: [indexPath], with: .top)
164
Lyndsey Scott

ソフトインパクトアニメーションソリューションの場合:

Swift 3:

let indexPath = IndexPath(item: row, section: 0)
tableView.reloadRows(at: [indexPath], with: .fade)

Swift 2.x:

let indexPath = NSIndexPath(forRow: row, inSection: 0)
tableView.reloadRowsAtIndexPaths([indexPath], withRowAnimation: .Fade)

これは、アプリをクラッシュから保護するもう1つの方法です。

Swift 3:

let indexPath = IndexPath(item: row, section: 0)
if let visibleIndexPaths = tableView.indexPathsForVisibleRows?.index(of: indexPath as IndexPath) {
    if visibleIndexPaths != NSNotFound {
        tableView.reloadRows(at: [indexPath], with: .fade)
    }
}

Swift 2.x:

let indexPath = NSIndexPath(forRow: row, inSection: 0)
if let visibleIndexPaths = tableView.indexPathsForVisibleRows?.indexOf(indexPath) {
   if visibleIndexPaths != NSNotFound {
      tableView.reloadRowsAtIndexPaths([indexPath], withRowAnimation: .Fade)
   }
}
20

Swift 3.0の場合

let rowNumber: Int = 2
let sectionNumber: Int = 0

let indexPath = IndexPath(item: rowNumber, section: sectionNumber)

self.tableView.reloadRows(at: [indexPath], with: .automatic)

デフォルトでは、TableViewにセクションが1つしかない場合、セクション値0を設定できます。

2
jaiswal Rajan

Swift 4

let indexPathRow:Int = 0    
let indexPosition = IndexPath(row: indexPathRow, section: 0)
tableView.reloadRows(at: [indexPosition], with: .none)
2
Neha
let indexPathRow:Int = 0
let indexPosition = IndexPath(row: indexPathRow, section: 0)
tableView.reloadRows(at: [indexPosition], with: .none)
2
Sachin Rasane

Swift 4.2

    func reloadYourRows(name: <anyname>) {
    let row = <your array name>.index(of: <name passing in>)
    let reloadPath = IndexPath(row: row!, section: 0)
    tableView.reloadRows(at: [reloadPath], with: .middle)
    }
1
Legend_ 33

さらに、tableviewにsectionsがある場合は、更新するすべての行を検索するのではなく、reloadセクションを使用する必要があります。簡単でバランスの取れたプロセスです。

yourTableView.reloadSections(IndexSet, with: UITableViewRowAnimation)
0

この質問はSwiftのものであることがわかりましたが、Xamarinの同等のコードは、誰かが興味を持っている場合に受け入れられた答えです。

var indexPath = NSIndexPath.FromRowSection(rowIndex, 0);
tableView.ReloadRows(new NSIndexPath[] { indexPath }, UITableViewRowAnimation.Top);
0
wildbagel

Swift 4.1

行のselectedTagを使用して行を削除するときに使用します。

self.tableView.beginUpdates()

        self.yourArray.remove(at:  self.selectedTag)
        print(self.allGroups)

        let indexPath = NSIndexPath.init(row:  self.selectedTag, section: 0)

        self.tableView.deleteRows(at: [indexPath as IndexPath], with: .automatic)

        self.tableView.endUpdates()

        self.tableView.reloadRows(at: self.tableView.indexPathsForVisibleRows!, with: .automatic)
0
Rana Ali Waseem

どうですか:

self.tableView.reloadRowsAtIndexPaths([NSIndexPath(rowNumber)], withRowAnimation: UITableViewRowAnimation.Top)
0
skyline75489