From 9b51fd8c047c9f29a44ab85b86d2d82ade73cc10 Mon Sep 17 00:00:00 2001 From: Ruben Nine Date: Mon, 15 Feb 2021 13:23:18 +0100 Subject: [PATCH] Add programmatic vs interactive upload distinction to documentation. --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 4c9a1a9e..d816d2a1 100644 --- a/README.md +++ b/README.md @@ -133,7 +133,7 @@ config.callbackURLScheme = "filestackdemo" let client = Filestack.Client(apiKey: "YOUR-API-KEY", security: security, config: config) ``` -### Uploading local files +### Uploading files programmatically ```swift let localURL = URL(string: "file:///an-app-sandbox-friendly-local-url")! @@ -151,7 +151,7 @@ let uploader = client.upload(using: localURL, uploadProgress: { (progress) in } ``` -### Uploading photos and videos from the Photo Library, Camera or Documents +### Uploading files interactively from the Camera, Photo Library, or Documents ```swift // The view controller that will be presenting the image picker.