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
- 리팩토링
- collectionview
- HIG
- Human interface guide
- ribs
- clean architecture
- Clean Code
- 리펙토링
- combine
- swift documentation
- 클린 코드
- Refactoring
- 스위프트
- MVVM
- map
- Xcode
- uiscrollview
- Protocol
- 애니메이션
- 리펙터링
- rxswift
- UITextView
- tableView
- SWIFT
- swiftUI
- Observable
- RxCocoa
- uitableview
- UICollectionView
- ios
Archives
- Today
- Total
목록벤치마크 구현 방법 (1)
김종권의 iOS 앱 개발 알아가기
[iOS - swift] [오픈소스 까보기] swift-benchmark - 벤치마크 방법
swift-benchmark 오픈소스 git repo 특정 기능에 대해서 속도 최적화해보고 싶은 경우, 어떤 것이 더욱 최적화 되는 작업인지 확인해야하는데 이 때 벤치마크를 통해 의사결정이 가능 benchmark 사용하기 위해서 아래 URL을 사용하여 SPM으로 추가 https://github.com/google/swift-benchmark 사용하는 것은 매우 간단하게, benchmark 함수의 클로저로 전달하면 완료 import Benchmark benchmark("add string no capacity") { var x1: String = "" for _ in 1...1000 { x1 += "hi" } } benchmark("add string reserved capacity") { var x2: ..
오픈소스 까보기
2023. 8. 31. 01:00