NSObject
·
iOS/UIKit
정의The root class of most Objective-C class hierarchies, from which subclasses inherit a basic interface to the runtime system and the ability to behave as Objective-C objects.NSObject는 Objective-C 및 Swift 프로그래밍 언어의 기본 클래스이며 대부분의 다른 클래스의 루트 클래스 역할을 한다. 기능많은 기능들이 있지만 대표적인 4가지 기능만 살펴보자. 1. 객체 초기화NSObject클래스는 다른 모든 클래스에서 상속되는 기본 초기화 메서드인 init을 제공한다. 2. 메모리 관리NSObject클래스는 객체에 할당된 메모리 관리를 하는 메서드를 제공..