Created
July 21, 2017 17:02
-
-
Save staycreativedesign/54492c65de73ae7f14b90f6d344064e3 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
let documentsPath = NSSearchPathForDirectoriesInDomains(.documentDirectory, .userDomainMask, true)[0] | |
// /Users/mindblown/Library/Developer/CoreSimulator/Devices/335D0FB4-A0FA-4373-8F9D-EC837D3404FC/data/Containers/Data/Application/D9986A43-592F-47E8-9D67-48C2639245E1/Documents | |
let imagePath = URL(fileURLWithPath: documentsPath + deckName + fileName) | |
// file:///Users/mindblown/Library/Developer/CoreSimulator/Devices/335D0FB4-A0FA-4373-8F9D-EC837D3404FC/data/Containers/Data/Application/EFEB1A98-30FC-4209-9FF9-20EC640EAA34/Documents/comida/PIA08653~small.jpg | |
// it creates and extra / in file:// |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment