Higher Order Functions: Filter, Map, Reduce
There are some times we need to iterate an array or dictionary to collect or manipulate values. The easy way is using for-in loop, get a value and add or manipulate it to a new array. But Swift off...
There are some times we need to iterate an array or dictionary to collect or manipulate values. The easy way is using for-in loop, get a value and add or manipulate it to a new array. But Swift off...
Using joined() method, we can merge an array of strings to a single string. We can add a separator too. let names = ["Brian", "Nick", "John", "David"] let list = names.joined(separator: ", ") prin...
iOS 14에서 달라진 앱에서 이메일 보내는 방법을 알아봅시다
With iOS 14, third-party app can be the default email app. This means we may have to support sending email with third-party apps. If the user is not using the default email app and use another app ...
If you need an array of keys or values of a dictionary, Swift has an easy way to do it. // You can get an array of dictionary's key or values let grades = ["KOR": 82, "ENG": 98, "MATH": 90] let s...
예전에는 리파지토리를 fork 해서 사용해 본 적이 드물었는데, 최근에는 fork 해서 개인 리파지토리에서 개발하다가 upstream 리파지토리로 반영하는 일이 잦아들었다. 그래서 개발하다 보면 최신 상태로 동기화 작업을 해야 하는데 맨날 까먹어서 글로 남기려고 한다. 터미널 연다. 작업하고 있는 리파지토리 경로로 이동한다. upstre...
From Swift 5.3 and later, enums can be comparable
You can show how long the project build in Xcode by entering below command in Terminal.app. defaults write com.apple.dt.Xcode ShowBuildOperationDuration YES After entering the command, if you bu...
In Swift, we can use multiline string literal to express several lines of string. Although, adding the new line character \n can create line break, it only works for string that are displayed. Use ...
이제 곧 4년 차, 미드 레벨(mid-level) 개발자가 될 예정이다. 생각보다 빠르게 시간이 지난 것 같다. 3년의 개발 생활을 회고하면서 그동안 나는 어떤 일을 했고, 앞으로는 어떤 방향으로 개발하고 싶은지 정리하고자 이 글을 쓰게 되었다. 실무 경험을 배우고 익숙해지는 시기 입사하고 나서 약 1년 6개월 동안은 시니어 개발자와 함께 개발하면...