タグ付けされた質問 「optional-binding」

6
条件付きバインディング:エラーが発生した場合–条件付きバインディングの初期化子にはオプションタイプが必要です
データソースと次のコード行から行を削除しようとしています。 if let tv = tableView { 次のエラーが発生します。 条件付きバインディングの初期化子には、UITableViewではなく、オプションタイプが必要です ここに完全なコードがあります: // Override to support editing the table view. func tableView(tableView: UITableView, commitEditingStyle editingStyle:UITableViewCellEditingStyle, forRowAtIndexPath indexPath: NSIndexPath) { if editingStyle == .Delete { // Delete the row from the data source if let tv = tableView { myData.removeAtIndex(indexPath.row) tv.deleteRowsAtIndexPaths([indexPath], withRowAnimation: .Fade) …
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.