Swift で UITableView 関連のロジックを書くときに、NSIndexPath を作るときは

1
2
let row = 0, section = 0
NSIndexPath(forRow: row, inSection: section)

のイニシャライザを使うべし。NSIndexPath(index: row) だと row の参照ができなくてエラーになる。