Notice
Recent Posts
Recent Comments
Link
투케이2K
464. (ios/swift5) [OrderedDictionary] 딕셔너리 조작 라이브러리 사용해 removeValue , remove At 특정 key 값 및 번지 데이터 삭제 본문
IOS
464. (ios/swift5) [OrderedDictionary] 딕셔너리 조작 라이브러리 사용해 removeValue , remove At 특정 key 값 및 번지 데이터 삭제
투케이2K 2024. 4. 13. 12:13[개발 환경 설정]
개발 툴 : XCODE
개발 언어 : SWIFT5
[소스 코드]
// -----------------------------------------------------------------------------------------
// MARK: - [테스트 메인 함수 정의 실시]
// -----------------------------------------------------------------------------------------
func testMain() {
S_Log._D_(description: "테스트 함수 시작 실시", data: nil)
/*
// -------------------------------------------------------
[요약 설명]
// -------------------------------------------------------
1. OrderedDictionary 라이브러리는 Ios 에서 간편하게 딕셔너리를 조작할 수 있는 라이브러리입니다
// -------------------------------------------------------
2. 필요 import : import OrderedDictionary
// -------------------------------------------------------
3. OrderedDictionary 라이브러리 Git 공식 사이트 : https://github.com/lukaskubanek/OrderedDictionary.git
// -------------------------------------------------------
4. OrderedDictionary 라이브러리 문법 참고 사이트 : https://github.com/apple/swift-collections/blob/main/Documentation/OrderedDictionary.md
// -------------------------------------------------------
5. 라이브러리 추가 방법 참고 사이트 : https://blog.naver.com/kkh0977/223414176473
// -------------------------------------------------------
*/
// [로직 처리 실시]
DispatchQueue.main.async {
// [초기 변수 선언]
var dictionary: OrderedDictionary<String, Int> = [:]
// [딕셔너리에 데이터 추가 수행]
dictionary["one"] = 1
dictionary["two"] = 2
dictionary["three"] = 3
// [removeValue 특정 key 값 삭제]
dictionary.removeValue(forKey: "two")
// [remove at 특정 번지 데이터 삽입]
dictionary.remove(at: 0)
// [로그 출력 수행]
S_Log._D_(description: "로그 출력 수행", data: [
"dictionary :: \(dictionary)"
])
}
}
[결과 출력]
반응형
'IOS' 카테고리의 다른 글
Comments