Swift 프로토콜

Swift Basic

Post thumbnail
Post thumbnail
프로토콜(Protocol) 특정 클래스와 관련없는 프로퍼티, 메서드 선언 집합 함수(메서드) 정의는 없음 기능이나 속성에 대한 설계도 클래스(구조체, 열거형)에서 채택(adopt)하여 메서드를 구현해야 함 [Read More]
Tags: iOS

Swift 상속

Swift Basic

Post thumbnail
Post thumbnail
상속 단일 상속 (single inheritance) = 스위프트에서 하위 클래스는 단 하나의 부모 클래스만 상속받을 수 있음 형식 = class 자식:부모 {} / class 클래스명:부모명, 프로토콜명1,프로토콜명2 {} 부모가 없으면 프로토콜명 바로 표기가능 상속은 클래스만 가능하다 [Read More]
Tags: iOS

Swift 클래스

Swift Basic

Post thumbnail
Post thumbnail
객체지향 용어 Swift 멤버 변수 = 프로퍼티(Property) 멤버 함수 = 메소드(Method) Objective-C 멤버 변수 = 인스턴스(Instance) 멤버 함수 = 메소드(method) 객체 인스턴스 실제로 메모리에 할당된 객체(object) 객체의 구성 데이터 변수(data variable) or 속성(property) 함수 or 메서드(method) 클래스 기본 클래스 선언 방식 [Read More]
Tags: iOS