본문 바로가기

전체 글

(36)
[iOS] Framwork? Liberary? 프레임워크와 라이브러리의 차이 참고하면 좋은 글 - [개발상식] 프레임워크(Framework) 와 라이브러리(Library)의 차이 [개발상식] 프레임워크(Framework) 와 라이브러리(Library)의 차이 🚀 "프레임워크와 라이브러리의 차이를 아시나요?"" "음... 프레임워크는 뼈대이고 라이브러리는 모듈 같은 것이고....😰" "그럼 최근에 사용하신 프레임워크와 라이브러리를 알려주세요." "... ex cocoon1787.tistory.com 프레임워크 프레임워크는 말 그대로 일 할 수 있는 최소 단위가 다 갖추어진 코드를 제공하는 집합체다. iOS의 경우 애플에서 제공하는 대표적인 프레임워크로는 Cocoa Touch Framework / Cocoa Framework 가 있으며 이 둘의 차이는 iOS 개발에는 Cocoa To..
[Swift] 안전하게 배열 접근하기 참고한 StackOverflow https://stackoverflow.com/questions/25329186/safe-bounds-checked-array-lookup-in-swift-through-optional-bindings/30593673#30593673 Safe (bounds-checked) array lookup in Swift, through optional bindings? If I have an array in Swift, and try to access an index that is out of bounds, there is an unsurprising runtime error: var str = ["Apple", "Banana", "Coconut"] str[0] // "Apple"..
[Swift] Provider Pattern + Moya를 곁들여 네트워크 구조 더 잘 짜기 -1- Provider Model Design Pattern and Specification, Part 1 Provider Model Design Pattern and Specification, Part 1 Table of contents Provider Model Design Pattern and Specification, Part 1 Article 06/30/2006 17 minutes to read In this article --> Rob Howard Microsoft Corporation March 2, 2004 Summary: Rob Howard returns to Nothin' But ASP.NET to look at how you can use docs.microsoft.com 위 글을 함께 참고..