Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- Clean Code
- clean architecture
- HIG
- collectionview
- 리펙토링
- swift documentation
- Observable
- uitableview
- 애니메이션
- 리팩토링
- 스위프트
- map
- MVVM
- 클린 코드
- 리펙터링
- UICollectionView
- UITextView
- swiftUI
- uiscrollview
- Protocol
- RxCocoa
- ribs
- rxswift
- combine
- ios
- SWIFT
- Xcode
- Human interface guide
- Refactoring
- tableView
Archives
- Today
- Total
목록Simultaneous accesses to (1)
김종권의 iOS 앱 개발 알아가기
[iOS - swift 공식 문서] 25. Memory Safety (메모리 안전, Simultaneous accesses to ... but modification requires exclusive access)
Memory Safety (메모리 안전) atomic: Swift는 메모리의 위치를 수정하는 코드가 해당 메모리에 독점적으로 액세스할 수 있도록 요구하여 동일한 메모리 영역에 다중 액세스가 충돌하지 않는 성질 메모리 Access conflicting 읽기 access, 쓰기 access // A write access to the memory where one is stored. var one = 1 // A read access from the memory where one is stored. print("We're number \(one)!") 메모리 access conflicting: 코드의 다른 부분이 동시에 메모리의 동일한 위치에 access하는 경우 발생 시간에 따라 같은 input을 주어도 ..
swift 공식 문서
2021. 7. 27. 11:25