ソートされた共通名の配列が必要です。彼らは簡単ではない、すべての種が共通の名前を持っている、しかし特別なSQLiteソート順Swift 3
`...ORDER BY RL_Species.species ASC`
でのSQLiteにソートされますので、「いいえ一般的な名前」と多くのレコードがあります。私はすべての共通名ASCをソートしたいが、ソートされたリストの一番下に「共通名なし」がある。
override func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell
{
let cell: UITableViewCell = tableView.dequeueReusableCell(withIdentifier: Resource.SpeciesCell)!
let specieCommonName: UILabel =
speciesCommonName.text = self.species[(indexPath as NSIndexPath).row].commonName
return cell
}
はこれが可能である:
これは、基本的なコードとTableViewControllerに呼ばれているのですか?
はあなたのクエリを置きますか? –