- figma 사용해서 wireframe 작성
- String 에서 특정 문자 제거
let noSpace = S.replacingOccurrences(of: " ", with: "")
let noSpaceNoDash = noSpace.replacingOccurrences(of: "-", with: "")
- Substring
numbers.insert("-", at: numbers.index(numbers.startIndex,
offsetBy: (i * 3 + i + 3)))