gpt4 book ai didi

swift - 核心数据,如何从关系集合(NSSet)中删除一个元素

转载 作者:行者123 更新时间:2023-11-30 10:35:41 25 4
gpt4 key购买 nike

我有一个多对多的核心数据模型,如下所示,播放列表和歌曲。

enter image description here

我可以成功地将歌曲添加到播放列表的关系(歌曲)中,例如,播放列表1(歌曲1) ->添加后,播放列表(歌曲1,歌曲2)。如下代码所示,使用addToSong(song)方法,该方法由CoreData自动生成,用于将对象添加到关系中。

func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
// fetch selected playlist first
let fetchRequest = NSFetchRequest<Playlist>(entityName: "Playlist")

let currentCell = self.tableView.cellForRow(at: indexPath)
let cellText = currentCell?.textLabel?.text
print("cell text", cellText ?? "No Playlist Name")

let predicate = NSPredicate(format: "name = '\(cellText!)' ", "")
fetchRequest.predicate = predicate

let song = NSEntityDescription.insertNewObject(forEntityName: "Song", into: context) as! Song
song.songName = playingSong?.songName
song.artistName = playingSong?.artistName
song.albumName = playingSong?.albumName
song.fileURL = playingSong?.url
print("song name", playingSong?.songName ?? "no songName")

do {
let selectedPlaylists = try self.context.fetch(fetchRequest)
for item in selectedPlaylists {
item.addToSong(song)

}
} catch let error as NSError {
print("Could not delete. \(error), \(error.userInfo)")
}


navigationController?.popViewController(animated: true)

// show short alert message to user
showAlert(userMessage: "Song added")
}

但是当我尝试从播放列表的关系中删除一些歌曲以使用removeFromSong(song)时,它不起作用。就我而言,我想做的是,例如之前,playlist1(歌曲1,歌曲2,歌曲3)和之后removeFromSong(xx),播放列表1(歌曲2,歌曲3)。我确实搜索了网络,但没有找到如何找到要从关系中删除的特定对象,任何帮助都将不胜感激!

///在下面的代码中,我创建了一个新的Song对象并为其分配了两个属性:songName和artistName,然后使用removeFromSong()从播放列表的关系中删除这首新创建的歌曲,但我不知道这样是否可行可以找到关系中保存的正确歌曲。

func deleteSong(indexPath: IndexPath) {

// remove record from Playlist entity of DB
let fetchRequest = NSFetchRequest<Playlist>(entityName: "Playlist")

let currentCell = self.tableView.cellForRow(at: indexPath)
// let cellText = currentCell?.textLabel?.text
let cellText = navigationItem.title

let predicate = NSPredicate(format: "name = '\(cellText!)' ", "")
fetchRequest.predicate = predicate

let song = NSEntityDescription.insertNewObject(forEntityName: "Song", into: context) as! Song
song.songName = currentCell?.textLabel?.text
song.artistName = currentCell?.detailTextLabel?.text

do {
let selectedPlaylists = try self.context.fetch(fetchRequest)
for item in selectedPlaylists {
// delete selected song in current playlist
item.removeFromSong(song)

// item.objectIDs(forRelationshipNamed: <#T##String#>)
// save the changes after deleting
try context.save()
}
} catch let error as NSError {
print("Could not delete. \(error), \(error.userInfo)")
}

// remove data from tableView
tableView.deleteRows(at: [indexPath], with: UITableView.RowAnimation.automatic)

//refresh tableView
tableView.reloadData()
}

///作为vadian的评论,将我的代码更改如下。

变化:

  1. 将关系的名称更新为歌曲和播放列表。

  2. 删除insertNewObject的代码模式,现在首先从索尼实体获取/查找所选歌曲。然后从播放列表中删除该歌曲removeFromSong(song)

  3. 删除reloadData,它不需要出现在deleteRow之后。

问题:现在我可以通过滑动删除来从 tableView 中删除所选内容,但是如果我强制关闭应用程序或导航到其他 View 并返回,则删除项目会被支持。所以在Core Data模型中删除不受影响。当我使用下面的代码(例如添加歌曲)时,效果很好,所以删除的问题在哪里,任何提示都适用。

do {
let selectedPlaylists = try self.context.fetch(fetchRequest)
for item in selectedPlaylists {
// delete selected song in current playlist
print("Ready to remove!!!!!")
item.removeFromSongs(selectedSong[0])

// save the changes after deleting
try self.context.save()
}
} catch let error as NSError {
print("Could not delete. \(error), \(error.userInfo)")
}

///完整代码:

import UIKit
import CoreData

class ShowPlaylistDetailsViewController: UITableViewController {


var song: SongData?
let context = (UIApplication.shared.delegate as! AppDelegate).persistentContainer.viewContext
var playlistObjects = [Playlist]()
var songObjects = [Song]()
var playlistName = ""
var selectedSong = [Song]()
// var rowCount: Int?

override func viewDidLoad() {
super.viewDidLoad()

}

override func viewWillAppear(_ animated: Bool) {
super.viewWillAppear(animated)

// set navigation controller's title
navigationItem.title = playlistName

// print("playlist name", playlistName)

let fetchRequest = NSFetchRequest<Playlist>(entityName: "Playlist")
let predicate = NSPredicate(format: "name = '\(playlistName)' ", "")
fetchRequest.predicate = predicate

do {
playlistObjects = try context.fetch(fetchRequest)
} catch {
fatalError("Can not query: \(error)")
}

songObjects = playlistObjects[0].songs?.allObjects as! [Song]

// refresh table data.
tableView.reloadData()
}

// MARK: - Table view data source

override func numberOfSections(in tableView: UITableView) -> Int {
// #warning Incomplete implementation, return the number of sections
return 1
}

override func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
// print("songs count", songsCount!)
return songObjects.count
}


override func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCell(withIdentifier: "showPlaylistDetails", for: indexPath)
cell.textLabel?.text = songObjects[indexPath.row].songName
cell.detailTextLabel?.text = songObjects[indexPath.row].artistName
cell.imageView?.image = UIImage(named: "icons8-music-50")
cell.imageView?.layer.cornerRadius = 0.8

return cell
}

override func tableView(_ tableView: UITableView, trailingSwipeActionsConfigurationForRowAt indexPath: IndexPath) -> UISwipeActionsConfiguration? {

let deleteAction = UIContextualAction(style: .normal, title: "Delete", handler: { (action, view, completion) in
self.deleteSong(indexPath: indexPath)
})

// action.image = UIImage(named: "My Image")
deleteAction.backgroundColor = .red
let swipeActions = UISwipeActionsConfiguration(actions: [deleteAction])
swipeActions.performsFirstActionWithFullSwipe = false
return swipeActions
}

func deleteSong(indexPath: IndexPath) {
// find current selected cell
let currentCell = self.tableView.cellForRow(at: indexPath)

// find the deleted song
let fetchRequestForSong = NSFetchRequest<Song>(entityName: "Song")
let ssName = currentCell?.textLabel?.text
print("ssName", ssName ?? "Song name retrieve failed")
let predicateForSong = NSPredicate(format: "songName = '\(ssName ?? "Song name retrieve failed")' ", "")
fetchRequestForSong.predicate = predicateForSong
do {
selectedSong = try self.context.fetch(fetchRequestForSong)
// print("songName", selectedSong.first?.songName)
} catch let error as NSError {
print("Could not delete. \(error), \(error.userInfo)")
}

// find current selected playlist
let fetchRequest = NSFetchRequest<Playlist>(entityName: "Playlist")
let cellText = navigationItem.title
let predicate = NSPredicate(format: "name = '\(cellText!)' ", "")
fetchRequest.predicate = predicate

do {
let selectedPlaylists = try self.context.fetch(fetchRequest)
for item in selectedPlaylists {
// delete selected song in current playlist
print("Ready to remove!!!!!")
item.removeFromSongs(selectedSong[0])

// save the changes after deleting
try self.context.save()
}
} catch let error as NSError {
print("Could not delete. \(error), \(error.userInfo)")
}

// remove song from dataSource array
songObjects.remove(at: indexPath.row)

// remove data from tableView
tableView.deleteRows(at: [indexPath], with: UITableView.RowAnimation.automatic)
}

@IBAction func naviBack(_ sender: UIBarButtonItem) {
navigationController?.popViewController(animated:true)
}
}

最佳答案

根据我的评论,这是删除方法的清理版本,如果 removeFromSongs 确实从关系中删除了歌曲

func deleteSong(at indexPath: IndexPath) {
// get current selected song
let currentSong = songObjects[indexPath.row]

// find current selected playlist
let fetchRequest = NSFetchRequest<Playlist>(entityName: "Playlist")
let cellText = navigationItem.title
let predicate = NSPredicate(format: "name == %@", cellText!)
fetchRequest.predicate = predicate
fetchRequest.fetchLimit = 1

do {
if let selectedPlaylist = try self.context.fetch(fetchRequest).first {
print("Ready to remove!!!!!")
selectedPlaylist.removeFromSongs(currentSong)

// save the changes after deleting
try self.context.save()

// remove song from dataSource array
songObjects.remove(at: indexPath.row)

// remove data from tableView
tableView.deleteRows(at: [indexPath], with: .automatic)
}
} catch {
print("Could not delete.", error)
}
}

关于swift - 核心数据,如何从关系集合(NSSet)中删除一个元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58084050/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com