목록전체 글 (29)
개발자의 삽질
보호되어 있는 글입니다.
https://developer.apple.com/documentation/foundation/urlsession Apple Developer Documentation developer.apple.com 이번 글은 URLSession 에 대해 알아보자! iOS에서 네트워킹을 할 때는 URLSession을 통해서 한다. URLSession 의 개요는 다음과 같다. 실습! 코드에 적혀 있는 주석에 유의해서 살펴보자! import UIKit // URL let urlString = "https://itunes.apple.com/search?media=music&entity=song&term=Gdragon" let url = URL(string: urlString) url?.absoluteString // ht..
https://docs.swift.org/swift-book/LanguageGuide/Inheritance.html Inheritance — The Swift Programming Language (Swift 5.5) Inheritance A class can inherit methods, properties, and other characteristics from another class. When one class inherits from another, the inheriting class is known as a subclass, and the class it inherits from is known as its superclass. Inheritance is docs.swift.org 오늘은 I..
https://blog.cleancoder.com/uncle-bob/2012/08/13/the-clean-architecture.html Clean Coder Blog The Clean Architecture 13 August 2012 Over the last several years we’ve seen a whole range of ideas regarding the architecture of systems. These include: Though these architectures all vary somewhat in their details, they are very similar. They all have blog.cleancoder.com 1편에 이어 2편을 쓴다. 1편: 2022.01.05 ..
https://blog.cleancoder.com/uncle-bob/2012/08/13/the-clean-architecture.html Clean Coder Blog The Clean Architecture 13 August 2012 Over the last several years we’ve seen a whole range of ideas regarding the architecture of systems. These include: Though these architectures all vary somewhat in their details, they are very similar. They all have blog.cleancoder.com 이번 글은 Swift 도 iOS 도 아닌 다른 종류의 ..
https://docs.swift.org/swift-book/LanguageGuide/Enumerations.html Enumerations — The Swift Programming Language (Swift 5.5) Enumerations An enumeration defines a common type for a group of related values and enables you to work with those values in a type-safe way within your code. If you are familiar with C, you will know that C enumerations assign related names to a set of in docs.swift.org 오늘..
https://developer.apple.com/documentation/uikit/uiimageview Apple Developer Documentation developer.apple.com 이번 포스팅에서는 UIImageView에 대해서 알아보는 시간은 아니다. UIImageView에 대해 알아보기보다는 UIImageView에 어떻게 터치할 수 있게 만드는지 알아보자! 근데 한 가지 궁금할 수 있다. 어? 그냥 IBAction을 만들어주면 되지 않을까? 결론부터 말하자면 안된다! UIImageView 를 대상으로 IBAction을 생성할 수 없다. 일단 위의 공식 문서를 읽어보자. 읽다보면 아래의 소제목을 볼 수 있다. Responding to Touch Events Image views igno..
보호되어 있는 글입니다.