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
- 리펙터링
- uitableview
- SWIFT
- ribs
- ios
- MVVM
- 리팩토링
- uiscrollview
- swiftUI
- UICollectionView
- tableView
- rxswift
- 리펙토링
- HIG
- Protocol
- Xcode
- Refactoring
- Human interface guide
- Observable
- clean architecture
- map
- Clean Code
- swift documentation
- 애니메이션
- UITextView
- 클린 코드
- RxCocoa
- 스위프트
- collectionview
- combine
Archives
- Today
- Total
목록parameter (2)
김종권의 iOS 앱 개발 알아가기
[iOS - swift] Argument Labels vs Parameter
Argument Labels: 함수를 부를 때 불려지는 이름 Parameter: 함수 내부에서 불려지는 이름 argumentLabel vs parameter * 출처 docs.swift.org/swift-book/LanguageGuide/Functions.html#ID166
iOS 기본 (swift)
2021. 4. 8. 23:23
[iOS - swift] URL, URI 파싱, path, query string (URLComponents, URITemplate 프레임워크)
URL에 parameter 삽입 (query string) "https://domainABC" 를 "https://domainABC?memberID=1234"로 변경 let url = "https://domainABC" var components = URLComponents(string: url) let id = URLQueryItem(name: "memberID", value: "1234") components?.queryItems = [id] guard let newURL = components?.url else { return } print(newURL) // Optional(https://domainABC?memberID=1234) URL의 parameter 파싱 (query string) "ht..
iOS 응용 (swift)
2021. 1. 25. 23:25