subtle & plausible

고정 헤더 영역

글 제목

메뉴 레이어

subtle & plausible

메뉴 리스트

    • 분류 전체보기 (118)
      • TIL (89)
        • #100DaysOfSwiftUI (44)
        • 리액트 네이티브 (6)
        • 실용주의 단위 테스트 (9)
        • App Architecture (5)
        • Combine (4)
        • Metal (2)
        • RxSwift (8)
        • Swift Codable (7)
        • TDD iOS (4)
      • 실험실 (3)
      • 책 (15)
      • 오프 (5)
      • 기타 (6)

    검색 레이어

    subtle & plausible

    검색 영역

    컨텐츠 검색
    Day 12. Optionals.

    https://www.hackingwithswift.com/100/swiftui/12 100 Days of SwiftUI – Day 12 – Hacking with Swift 100 Days of SwiftUI The 100 Days of SwiftUI is a free collection of videos, tutorials, tests, and more to help you learn SwiftUI faster. Click here to learn more, or watch the video below. Back to 100 Days of SwiftUI www.hackingwithswift.com 드디어 Swift 파트의 마지막 날입니다. 처음 optional을 접했을 때는 약간 번거롭기도 해서 괜한..

    TIL/#100DaysOfSwiftUI 2020. 1. 6. 23:44

    실용주의 단위 테스트. 7장. 경계 조건: CORRECT 기억법.

    경계 조건에 관계된 결함들을 미연에 방지하기 위해서 작성해야하는 테스트들을 살펴봅니다. Conformance: 값이 기대한 양식을 준수하고 있는가? 데이터가 기대하고 있는 형식을 갖추고 있는지 테스트해야 합니다. 이메일 주소나 전화번호 같은 문자열 데이터는 양식을 검증하는 테스트를 작성할 필요가 있습니다. 좀 더 복잡한 구조적 데이터의 경우에는 경계 조건을 조합하면 테스트 수가 더욱 늘어납니다. 헤더, 데이터, 트레일러로 구성된 데이터를 가정했을 때, 다음과 같은 경계 조건들을 테스트해야 합니다. - 헤더가 없습니다. 데이터와 트레일러만 존재합니다. - 데이터가 없습니다. 헤더와 트레일러만 존재합니다. - 트레일러가 없습니다. 헤더와 데이터만 존재합니다. - 트레일러만 있습니다. - 헤더만 있습니다. -..

    TIL/실용주의 단위 테스트 2020. 1. 1. 14:40

    RxSwift. Ch 2. Observables

    What is an observable? 'observable', 'observable sequence', 'sequence', 'stream' 여러가지 이름으로 불리고 있지만, RxSwift에서는 오직 'sequence'라고 합니다. 코드에 'stream'을 주로 썼었는데 낭패... Observable이 emit하는 Event는 다음과 같습니다. - Event.next(Element): Sequence가 실제로 다루고 있는 데이터를 담고 있습니다. - Event.error(Swift.Error): Error를 담고 있는 이벤트로, 이벤트 발생 시 sequence가 종료됩니다. - Event.completed: Sequence가 정상적으로 종료될 경우 발생하는 이벤트입니다. 간단하게 Observable을..

    TIL/RxSwift 2020. 1. 1. 11:04

    Day11. Protocols and extensions.

    https://www.hackingwithswift.com/100/swiftui/11 100 Days of SwiftUI – Day 11 – Hacking with Swift 100 Days of SwiftUI The 100 Days of SwiftUI is a free collection of videos, tutorials, tests, and more to help you learn SwiftUI faster. Click here to learn more, or watch the video below. Back to 100 Days of SwiftUI www.hackingwithswift.com Protocol입니다. Class Inheritance와 Protocol Conformance 중 하나를..

    TIL/#100DaysOfSwiftUI 2020. 1. 1. 11:03

    Day 10. Classes.

    https://www.hackingwithswift.com/100/swiftui/10 100 Days of SwiftUI – Day 10 – Hacking with Swift Classes At first, classes seem very similar to structs because we use them to create new data types with properties and methods. However, they introduce a new, important, and complex feature called inheritance – the ability to make one class build on the f www.hackingwithswift.com Struct와 Class의 5가지..

    TIL/#100DaysOfSwiftUI 2019. 12. 31. 01:14

    Day 9. Structs, part two.

    https://www.hackingwithswift.com/100/swiftui/9 100 Days of SwiftUI – Day 9 – Hacking with Swift 100 Days of SwiftUI The 100 Days of SwiftUI is a free collection of videos, tutorials, tests, and more to help you learn SwiftUI faster. Click here to learn more, or watch the video below. Back to 100 Days of SwiftUI www.hackingwithswift.com Initializer와 Access Level을 보니 잠시 혼란스러웠습니다. struct는 memberwis..

    TIL/#100DaysOfSwiftUI 2019. 12. 29. 20:10

    Day 8. Structs, part one.

    https://www.hackingwithswift.com/100/swiftui/8 100 Days of SwiftUI – Day 8 – Hacking with Swift Structs, part one I know some of you might be keen to charge on with today’s new Swift learning, but hold up: you just finished learning about closures, which are a difficult topic. And you came back for more. Seriously, that deserves a lot of respect. And www.hackingwithswift.com Java가 주력 언어인 상태에서 Sw..

    TIL/#100DaysOfSwiftUI 2019. 12. 28. 23:34

    Day7. Closures, part two.

    https://www.hackingwithswift.com/100/swiftui/7 100 Days of SwiftUI – Day 7 – Hacking with Swift 100 Days of SwiftUI The 100 Days of SwiftUI is a free collection of videos, tutorials, tests, and more to help you learn SwiftUI faster. Click here to learn more, or watch the video below. Back to 100 Days of SwiftUI www.hackingwithswift.com Closure를 function parameter로 쓰는 건 익숙한데, return type으로 사용하기 시..

    TIL/#100DaysOfSwiftUI 2019. 12. 28. 10:03

    추가 정보

    인기글

    최신글

    페이징

    이전
    1 ··· 6 7 8 9 10 11 12 ··· 15
    다음
    깃헙 브런치 링크드인
    subtle & plausible
    페이스북 트위터 인스타그램 유투브 메일

    티스토리툴바