I am Work With Shopify SDK
. I Succesfully integrated it but the problem is when I have try to get collection from shopify then my app is crashed?
I have follow this tutorial which provided by shopify.
Code
// 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
}];
Crash
Please help me to short out this.