일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 애니메이션
- 리펙터링
- ios
- Protocol
- UICollectionView
- swift documentation
- Xcode
- 스위프트
- RxCocoa
- MVVM
- 리펙토링
- uitableview
- HIG
- map
- tableView
- 클린 코드
- Human interface guide
- Refactoring
- combine
- swiftUI
- ribs
- uiscrollview
- Observable
- collectionview
- Clean Code
- clean architecture
- 리팩토링
- SWIFT
- UITextView
- rxswift
- Today
- Total
목록~Copyable (4)
김종권의 iOS 앱 개발 알아가기
Swift 저장소Swift의 레포는 원격 저장소는 github을 사용하고 있으며, 기존에는 github.com/apple/* 형태로 관리되고 있었음대표적인 swift github주소: https://github.com/apple/swift이제 swift는 github.com/swiftlang 주소로 이전될 것곧 마이그레이션을 시작할 예정이며 자세한 내용은 Swift.org에 게시 https://github.com/swiftlangSwift 언어 업데이트 - 1) Noncopyable types (~Copyable)swift에서 value타입이나 reference타입이나 모두 복사가 가능Noncopyable types는 이 기본 복사 가능성을 막아주는 역할고유한 소유권을 표현하고자 할 때 적합한 키워드만약..
1. noncopyable, ~Copyable - 개념 (Swift 5.9+, owner, ownership, 최적화)2. noncopyable, ~Copyable - 연산자 (borrowing, inout, consuming)~Copyable 연산자~Copyable을 사용하고 이 instance를 함수에서 주고 받을 때, 파라미터에 아무런 키워드를 사용하지 않으면 컴파일 에러가 발생struct A: ~Copyable { var age: Int deinit { print("deinit: A") }}class ViewController: UIViewController { var a = A(age: 1) override func viewDidLoad() ..
1. noncopyable, ~Copyable - 개념 (Swift 5.9+, owner, ownership, 최적화)2. noncopyable, ~Copyable - 연산자 (borrowing, inout, consuming)noncopyable, ~Copyable 이란?Swift5.9에서 탄생struct SomeStruct: ~Copyable { var name: String}enum SomeEnum: ~Copyable { case a}swift5.9 이전 swift 모든 타입들은 모두 copyable 타입 noncopyable은 swift5.9에서 enum과 struct에 적용 가능하도록 등장class 타입은 deinit이 있어서 이 deinit을 활용할 수 있지만, struct와 enu..
(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..