Hi All,
I am unable to install eSIM plan using addplan method in objective c kindly help me on this, I have used below code.
I am unable to install eSIM plan using addplan method in objective c kindly help me on this, I have used below code.
Code Block CTCellularPlanProvisioningRequest *provRequest = [[CTCellularPlanProvisioningRequest alloc] init]; provRequest.address = @"eSim Address"; [provisioning addPlanWith:provRequest completionHandler:^(CTCellularPlanProvisioningAddPlanResult result) { switch (result) { case CTCellularPlanProvisioningAddPlanResultUnknown: NSLog(@"Provisioning Unknown"); break; case CTCellularPlanProvisioningAddPlanResultFail: NSLog(@"Provisioning Fail"); break; case CTCellularPlanProvisioningAddPlanResultSuccess: NSLog(@"Provisioning Success"); break; default: NSLog(@"Something went wrong, Please try again later"); break; } }];