태그>swift(총 119개의 글)
'swift' 관련 최근글
-
- iOS 개발 관련 사이트(update: 04/24/2021)

-
테디호프의 이글루입니다. by 테디호프|2021/04/23 22:33
안녕하세요, 테디호프입니다.iOS 개발 관련 사이트 링크 및 소개를 게시하는 글입니다.공부하면서 모르는 것을 찾다보니 자주 방문하게된 사이트를 기준으로 정리해봅니다. 1. Apple Developer - Xcode, Kit etc.Link: https://developer.apple.com언어: 영문 애플..
- iOS 개발 관련 사이트(update: 04/24/2021)
-
- iOS 개발 공부 일기 (1)

-
테디호프의 이글루입니다. by 테디호프|2021/04/23 02:33
패스트 캠퍼스 iOS 앱 개발 강좌를 통해서 Swift 공부를 하고 있습니다.오늘은 드디어 Xcode를 통해서 스마트폰 화면에 그림도 띄우고 글도 띄워보게 되는군요.스크롤하면 밑에 화면도 올라옵니다 헤에. 이 간단하게 보이..
- iOS 개발 공부 일기 (1)
-
- iOS 개발자가 되는 방법(로드맵)

-
테디호프의 이글루입니다. by 테디호프|2021/04/20 22:09
iOS 개발 어디서부터 시작해야할까요? 올해 저의 목표 중에 하나는 iOS 앱을 하나 개발해보는 것입니다.한때는 1인 개발이니 소규모로 앱 개발이 많이 유행을 했었죠.요즘은 양질의 앱과 사용자가 선호하는 앱이..
- iOS 개발자가 되는 방법(로드맵)
-
- iOS swift universal link 가 AppDelegate.swift 에서 안될때

-
뭐래냐? by Heb614|2021/03/03 17:59
애플 아이폰 iOS 13 이상에서 유니버셜 링크가 적용이 안되서 한참을 삽질하다 devssun 님 블로그를 보고 해결하였습니다. 본문에선 유니버셜 링크 적용법은 검색하면 많이 나오니 따로 설명하지는 않겠습니다. iOS 13 이상 버전에서 작동을 하지 않을때 해결법입니다. 본 해결법..
iOS, Swift, Universal, Link, AppDelegate
- iOS swift universal link 가 AppDelegate.swift 에서 안될때
-
- WWDC 2019...

-
being nice to me by 오오|2019/06/05 07:43
일반적인 신묘한 것들은 이미 이전에 다 보여줘서 그런지 과거 초단위 컷일 때 보다 대중의 관심이 많이 줄어든 것으로 보이는 WWDC 2019. 키노트랑 Platforms State of the Union을 대충 살펴본 느낌입니다. ..
- WWDC 2019...
-
- Advanced Operators

-
SCIENART BB by SCIENART BB|2018/11/19 13:07
Advanced Operators In addition to the operators described in Basic Operators, Swift provides several advanced operators that perform more complex value manipulation. These include all of the bitwise and bit shifting operators yo..
- Advanced Operators
-
- Access Control

-
SCIENART BB by SCIENART BB|2018/11/19 12:49
Access Control Access control restricts access to parts of your code from code in other source files and modules. This feature enables you to hide the implementation details of your code, and to specify a preferred interface thro..
- Access Control
-
- Memory Safety

-
SCIENART BB by SCIENART BB|2018/11/19 12:37
Memory Safety By default, Swift prevents unsafe behavior from happening in your code. For example, Swift ensures that variables are initialized before they’re used, memory isn’t accessed after it’s been deallocated, and ar..
- Memory Safety
-
- Automatic Reference Counting

-
SCIENART BB by SCIENART BB|2018/11/19 12:24
Automatic Reference Counting Swift uses Automatic Reference Counting (ARC) to track and manage your app’s memory usage. In most cases, this means that memory management “just works” in Swift, and you do not need to t..
swift, arc, weak, unowned, capturelist
- Automatic Reference Counting
-
- Generics

-
SCIENART BB by SCIENART BB|2018/11/19 09:31
Generics Generic code enables you to write flexible, reusable functions and types that can work with any type, subject to requirements that you define. You can write code that avoids duplication and expresses its intent in a cl..
- Generics
-
- Extensions

-
SCIENART BB by SCIENART BB|2018/11/17 07:42
Extensions 익스텐션은 주어진 클래스, 구조체, 열거형, 또는 프로토콜 형식에 기능을 추가하는 것이다. 원본 소스코드에 접근할 수 없는 상황에서도 형식을 확장할 수 있다. (retroactive modeling). 익스텐션은 오브젝티브C의 카테고리와 유사하다. (오브젝티브 C..
- Extensions
-
- Nested Types

-
SCIENART BB by SCIENART BB|2018/11/17 07:33
Nested Types 열거형은 특정 클래스나 구조체의 기능을 지원하기 위해 생성된다. Similarly, it can be convenient to define utility classes and structures purely for use within the context of a more complex type. To accomplish this, Swift enab..
- Nested Types
-
- Type Casting

-
SCIENART BB by SCIENART BB|2018/11/16 20:29
Type Casting 타입 캐스팅은 인스턴스형식을 확인하거나 인스턴스를 다른 상위 클래스 또는 하위 클래스로 처리하기 위한 방법이다. 스위프트의 타입 캐스팅은 is와 as 연산자로 구현된다. 이들 두 연산자는 단순하고 표현적인 방법을 제공한다. 타입 캐스팅을 프로토콜을 지..
- Type Casting
-
- Error Handling

-
SCIENART BB by SCIENART BB|2018/11/16 16:00
Error Handling 에러 핸들링은 프로그램 내에서 에러 조건으로부터 되살리고 에러에 반응하기 위한 처리이다. 스위프트는 런타임에서 스로잉, 캐칭, 프로파게이팅, 그리고 메니퓰레이팅하는 최상의 지원을 제공한다. 몇몇 연산은 완전한 실행이나 유용한 출력을 만든다는 보..
- Error Handling




