본문 바로가기

iOS/설명120

[iOS] NSObject Apple Developer Documentation developer.apple.com NSObject Subclass들이 run time system에 대한 기본 인터페이스를 상속받고, Objective-C 오브젝트로써 동작할 수 있도록 하는 Objective-C class 계층에서의 root class. NS Key-Value Coding, NS Key-Value Observing을 사용가능 2022. 9. 25.
[iOS] UIView object를 생성하는 것은 Main thread에서 동작 안 해도 된다. Apple Developer Documentation developer.apple.com 모든 UI와 관련된 조작은 main thread에서 일어나야하지만, UIView object를 생성하는 것은 main thread에서 안해도 된다. 2022. 9. 19.
[iOS] Custom Container ViewController Apple Developer Documentation developer.apple.com Custom Container ViewController app의 data를 보여주는 Content ViewController들과는 다르게 Container ViewController는 다른 viewController들을 보여주고, screen에 배치하고 그들 사이에 navigation을 핸들링한다. Container ViewController는 여전히 ViewController이기에, window에 띄우거나 다른 ViewController처럼 present할 수도 있다. Container ViewController는 하나 이상의 child ViewController을 통합하여 하나의 View hierarchy에서 .. 2022. 8. 21.
[iOS] iOS Keychain Basic iOS Security: Keychain and Hashing Security is very important in iOS development. In this tutorial, learn basic iOS Security techniques including accessing the keychain and hashing values. www.raywenderlich.com iOS Keychain User의 email, password, 은행 계좌 정보와 같이 개인적인 정보를 저장할 때, application의 보안은 매우 중요하다. 이 정보들을 잠재적인 위협으로부터 보호하기 위해 Apple은 여러 개의 강력한 API들을 만들어 왔다. Apple 개발자들을 위한 가장 중요한 보안 요소 중 하나.. 2022. 8. 20.