Swift 기본문법을 마치며…

더 알아보기

추가적으로 알아가야 할 문법과 개념들을 모아봤습니다.

  • 제네릭(Generics)
  • 서브스크립트(Subscript)
  • 접근수준(Access Control)
  • ARC(Automatic Reference Counting)
  • 중첩타입(Nested Types)
  • 사용자정의 연산자(Custom Operators)
  • 오류 처리(Error Handling)
  • 불명확 타입(Opaque Types

0 Comments

구조체

구조체

[embed]http://www.youtube.com/watch?v=0ZF5lhpEcC8[/embed]

소스코드

정의 문법

스위프트 대부분의 타입은 구조체로 이루어져 있습니다. 구조체는 값 타입입니다. 타입이름은 대문자 카

0 Comments
Close