Getstream 错误 iOS 文档
Getstream Bad iOS documentation
好的,所以我正在尝试将 GetStream 添加到允许用户发表评论的应用程序中。首先努力理解文档的 "backwards" 语法我也在努力让方法正常工作(这归结为糟糕的文档)因为我想做的就是检查用户是否遵循特定的供稿:
userFeed!.following(filter: [FeedId(feedSlug: "element", userId: uuid)], limit: 1) { result in}
以上失败,原因如下:
Cannot convert return expression of type 'Cancellable' to return type 'Bool'
这是来自他们自己的文档的片段:
user1.following(filter: [FeedId(feedSlug: "user", userId: "42"),
FeedId(feedSlug: "user", userId: "43")], limit: 2) { result in /* ... */ }
有没有人使用 GetStream 可以帮助解决这个问题?
谢谢
从你的日志来看,问题更清楚了。供稿 ID 不能包含超过 1 个冒号。
好的,所以我正在尝试将 GetStream 添加到允许用户发表评论的应用程序中。首先努力理解文档的 "backwards" 语法我也在努力让方法正常工作(这归结为糟糕的文档)因为我想做的就是检查用户是否遵循特定的供稿:
userFeed!.following(filter: [FeedId(feedSlug: "element", userId: uuid)], limit: 1) { result in}
以上失败,原因如下:
Cannot convert return expression of type 'Cancellable' to return type 'Bool'
这是来自他们自己的文档的片段:
user1.following(filter: [FeedId(feedSlug: "user", userId: "42"),
FeedId(feedSlug: "user", userId: "43")], limit: 2) { result in /* ... */ }
有没有人使用 GetStream 可以帮助解决这个问题?
谢谢
从你的日志来看,问题更清楚了。供稿 ID 不能包含超过 1 个冒号。