Swift2 The Magic of Sourcery 번역 Sourcery란 Swift용 코드 생성 툴입니다. 대부분의 개발자가 "보일러 플레이트"라고 부르는 매우 반복적인 자동 생성 코드에 적합합니다. Ex) Equatable 구현 Hashable 구현 struct 생성자 Lens 구현 역주 : Mock과 Stub도 만들 수 있습니다. 간단하게 기본적인 Mac command line 앱부터 시작하겠습니다. 이 앱에는 간단한 타입이 있습니다. struct Person { var firstName: String var lastName: String var birthDate: Date var age: Int { return Calendar.current.dateComponents([.year], from: birthDate, to: Date()).year ?? -1.. 2021. 11. 7. Nimble library not found for -lswiftXCTest 안녕하세요 ◠‿◠ 고고입니다. https://github.com/Quick/Nimble/issues/863를 보고 임시방편으로 Podfile 밑에 이걸 추가하니 오류가 해결되었습니다. post_install do |installer| installer.pods_project.targets.each do |target| if target.name == "Nimble" target.build_configurations.each do |config| xcconfig_path = config.base_configuration_reference.real_path xcconfig = File.read(xcconfig_path) new_xcconfig = xcconfig.sub('lswiftXCTest', 'lXCT.. 2021. 11. 7. 이전 1 다음