My application uses CoreML model filters. Through parsing the JSON file, I plan to update the list of models (Download by reference from JSON, add, and also delete CoreML models).

Question: how to update models in the assembled application (published in the AppStore) via JSON parsing (add new or delete existing ones)?

  • Via URLSession or via Alamofire ... Clarify a question? Do you want to see the potential architecture of the application or a link to the manual for using the network? - Morgan Freewalker
  • @MorganFreewalker To be honest - any material that will help - John Corder
  • In this case, I would make the following structure: 1) Obtaining a list of models in json-format (such as keys Name-Size-Link) 2) When a user chooses a model, the jump would start via URLSession and saved using FileManager. 3) If necessary, the model from the local file would already be loaded - Morgan Freewalker

0