6
การผูกตามเงื่อนไข: หากปล่อยให้เกิดข้อผิดพลาด - ตัวเริ่มต้นสำหรับการผูกตามเงื่อนไขต้องมีประเภทที่เป็นทางเลือก
ฉันกำลังพยายามลบแถวจากแหล่งข้อมูลและโค้ดบรรทัดต่อไปนี้: if let tv = tableView { ทำให้เกิดข้อผิดพลาดต่อไปนี้: Initializer สำหรับการเชื่อมโยงตามเงื่อนไขต้องมีประเภทที่เป็นทางเลือกไม่ใช่ 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], …
120
ios
swift
optional-binding