作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在将 BuyProductVariant 转换为 BuyProduct 时遇到问题,因为我从 BuyCart 获取了使用以下代码添加到该购物车中的所有变体的数组
NSArray *arr = cart.lineItems;
现在根据我的理解,这个数组包含添加到购物车中的所有变体。
之后,我在 BuyProductVariant 中获取了这些对象
for (int j=0; j<arr.count; j++) {
BUYProductVariant *variant = arr[j];
//As the product is defined in BuyProductVariant class
BUYProduct *product = variant.product;
//But when the above line executes the app crashes, below is the description
}
exception: -[__NSDictionaryM product]: unrecognized selector sent to instance 0x7fd3286d3c50
现在,在上面的代码中,我哪里做错了,任何帮助都会对我很有帮助。
谢谢
最佳答案
BUYCart.lineItems 数组不包含 BUYProductVariant 对象。它包含 BUYCartLineItem 对象。您可以从中检索您的 BUYProductVariant。
for (BUYCartLineItem* line in cart.lineItems) {
BUYProductVariant* productVariant = line.variant;
}
关于ios - Shopify iOS SDK - 将 BuyProductVariant 转换为 BuyProduct 的问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34565364/
我在将 BuyProductVariant 转换为 BuyProduct 时遇到问题,因为我从 BuyCart 获取了使用以下代码添加到该购物车中的所有变体的数组 NSArray *arr = car
我是一名优秀的程序员,十分优秀!