• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

ios - 过滤结构时出错

[复制链接]
菜鸟教程小白 发表于 2022-12-11 18:18:06 | 显示全部楼层 |阅读模式 打印 上一主题 下一主题

我正在尝试过滤我的结构:

class Song: CustomStringConvertible {
    let title: String
    let artist: String

    init(title: String, artist: String) {
        self.title = title
        self.artist = artist
    }

    var description: String {
        return "\(title) \(artist)"
    }
}

var songs = [
    Song(title: "Song Title 3", artist: "Song Author 3"),
    Song(title: "Song Title 2", artist: "Song Author 2"),
    Song(title: "Song Title 1", artist: "Song Author 1"),
    Song(title: "Song Title 0", artist: "Song Author 1")
]

UITableView 上显示:

func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
    var cell: LibrarySongTableViewCell! = tableView.dequeueReusableCell(withIdentifier: "Library Cell") as! LibrarySongTableViewCell

    cell.titleLabel = songs[indexPath.row].title
    cell.artistLabel = songs[indexPath.row].artist
}

像这样:

var filteredArtist = songs.filter { song -> Bool in
    return song.artist == "Artist Name"
}

但是,每当我将 cellForRowAtindexPath 更改为

时,我都会收到错误 Thread 1: EXC_BAD_INSTRUCTION
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
    var cell : LibrarySongTableViewCell! = tableView.dequeueReusableCell(withIdentifier: "Library Cell") as! LibrarySongTableViewCell

    cell.titleLabel = filteredArtist[indexPath.row].title
    cell.artistLabel = filteredArtist[indexPath.row].artist
}

我该如何解决这个问题?我在这一行得到错误:

cell.titleLabel = filteredArtist[indexPath.row].title



Best Answer-推荐答案


正如 @Martin R 在评论中所说,问题可能与您的表格的总行数有关。

尝试像这样编写更新 tableView:tableView:numberOfRowsInSection 方法

override func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
    return filteredArtist.count
} 

关于ios - 过滤结构时出错,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45128927/

回复

使用道具 举报

懒得打字嘛,点击右侧快捷回复 【右侧内容,后台自定义】
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

关注0

粉丝2

帖子830918

发布主题
阅读排行 更多
广告位

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap