作者热门文章
- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
我正在使用 Shopify SDK
。我已成功集成它,但问题是当我尝试从 shopify 获取收藏时我的应用程序崩溃了?
我已经关注this由 shopify 提供的教程。
代码
// Shopify Initializtion
BUYClient *client;
client = [[BUYClient alloc] initWithShopDomain:SHOP_DOMAIN
apiKey:API_KEY
appId:APP_ID];
[client getCollectionsPage:1 completion:^(NSArray<BUYCollection *> * collections, NSUInteger page, BOOL reachedEnd, NSError *error)
{
// here get a collection
}];
崩溃
请帮我缩短这个。
最佳答案
好消息是我本周早些时候解决了这个问题!您可能正在使用他们目前存在一些问题的静态框架(我认为他们会更新他们的文档以反射(reflect)这一点)。
这是我在他们的 GitHub 问题板上写的答案:
This stack-overflow answer ended up being the solution: https://stackoverflow.com/a/29453132 I had to take the "Mobile Buy SDK.xcdatamodel" from the Mobile Buy SDK project, and put it into my project (plus make sure it is in compile sources!). After this, my project works with the static framework.
关于ios - 如何从Shopify SDK获取收藏?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40067170/
我是一名优秀的程序员,十分优秀!