SPTSearch返回SPTListPage但无法访问项目

时间:2017-03-26 08:13:05

标签: spotify

所以这是我的代码:

SPTSearch.perform(withQuery: "This+Test", queryType: .queryTypePlaylist, accessToken: session.accessToken) { (error:Error?, result:Any?) in
        if let err = error {
            print(err)
        } else {
            print("no errors")
        }

        if let r = result as? SPTListPage {
            print(r)
            if let items = r.items {
                print(items)
            } else {
                print("could not access Items")
            }
        } else {
            print("could not typecast to SPTListPage")
        }
    }

这是调试输出:

no errors
<SPTListPage: 0x600000289290>: 0-18446744073709551615 of 23 items
could not access Items

看起来我正在获取一个列表页面,但无法以任何方式访问这些项目,发生了什么?

1 个答案:

答案 0 :(得分:1)

将“-all_load”添加到其他链接器标志