Blue Yeti Microphone
Rode Stand
Spider Shock Mount
Mac Keyboard Cover
Screenflow - recording software
Split String into Array by Words
Splitting a string into an array based on the word sounds daunting initially, however is quite simple. To achieve this follow the sample code below: let sentence = “Hello im Seemu” let wordsArray = sentence.components(separatedBy: ” “) let wordFirst = wordsArray[0] // Hello let wordSecond = wordsArray[1] // im let wordThird = wordsArray[2] // Seemu […]