Blue Yeti Microphone
Rode Stand
Spider Shock Mount
Mac Keyboard Cover
Screenflow - recording software
Swift check if an element is in an array
Checking if an element is an an array in swift is easy, with no special code required. In the example below we search our array the number “3” and print out “yes” if it is found: let elements = [3, 6, 9, 1, 7, 9] if elements.contains(3) { print(“yes”) } Since our array does in […]