일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
- combine
- Human interface guide
- clean architecture
- ios
- swift documentation
- swiftUI
- UICollectionView
- RxCocoa
- SWIFT
- MVVM
- Protocol
- rxswift
- 리펙토링
- 애니메이션
- collectionview
- uiscrollview
- 스위프트
- Refactoring
- UITextView
- HIG
- Clean Code
- 리펙터링
- ribs
- tableView
- Observable
- 리팩토링
- uitableview
- 클린 코드
- map
- Xcode
- Today
- Total
목록foundation (2)
김종권의 iOS 앱 개발 알아가기
* foundation의 AttributedString.swift Github 주소 참고 AttributedString.swift 구현부 * NSAttributedString 개념은 이전 포스팅 글 참고 AttributedString은 Sendable을 따르고 있으므로 동시성 처리에 안전 내부적으로 _guts를 가지고 있는데 guts는 core라는 의미 // AttributedString.swift @dynamicMemberLookup @available(macOS 12, iOS 15, tvOS 15, watchOS 8, *) public struct AttributedString : Sendable { internal var _guts: Guts internal init(_ guts: Guts) { _..
(1). 스위프트의 새로운 기능 - (조건문이 표현식으로 변경, type check 속도 향상, repeat each 제네릭스) (2). 스위프트의 새로운 기능 - (Swift Macro 개념, Swift Macro 동작 원리) (3). 스위프트의 새로운 기능 - 애플이 Foundation을 공개한 이유, ~Copyable, C++ interop, Actor and concurrency, unownedSerialExcutor 애플이 Foundation를 깃에 공개한 이유 애플이 swift-foundation 깃에 공개한 이유? 애플에서 Swift를 확장성 있도록 가져가기를 원함 (한 예로 C, C++ 저수준 언어로 Swift를 푸시할 수 있음) swift-foundation 코드도 Apple 및 Appl..