Код: Выделить всё
[self.client loginCustomerWithCredentials:credentials callback:^(BUYCustomer * customer, BUYCustomerToken * token, NSError * _Nullable error) {
if (customer && !error) {
self.appDelegate.cart = [self.client.modelManager insertCartWithJSONDictionary:nil];
NSLog(@"Success fully loged in token %@ %@",token.accessToken,token.customerID);
UINavigationController *navigationController = self.navigationController;
[navigationController popViewControllerAnimated:YES];
}else{
[self showEror:@"LogIn Failed" message:@"Please provide valid Details"];
}
}];
Как создать корзину для пользователя, чтобы он мог получить к ней доступ на любом устройстве?
Подробнее здесь: https://stackoverflow.com/questions/409 ... h-customer
Мобильная версия