Blue Yeti Microphone
Rode Stand
Spider Shock Mount
Mac Keyboard Cover
Screenflow - recording software
Read from and Write to a text file in Swift
Reading & writing to a text file in Swift is simple. We use the documents directory to store our text files and read from them. The code below does this. // Save data to file let fileName = “Test” let DocumentDirURL = try! FileManager.default.url(for: .documentDirectory, in: .userDomainMask, appropriateFor: nil, create: true) let fileURL = DocumentDirURL.appendingPathComponent(fileName).appendingPathExtension(“txt”) […]