Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 | 31 |
Tags
- Explict Identity
- Lazy
- git
- ios login
- Demystify SwiftUI
- 씨샵언어
- view
- WWDC21
- Structural Identity
- Spring
- Xcode
- lazy 사용
- Lifetime of SwiftUI
- 적절한 사용방법
- sementic versioning
- lifecycle
- github
- swift
- Your app is missing support for the following URL schemes: your_ios_client_id
- xml delegate
- native개발
- Identity
- lazy 위험성
- consuming a restful web service
- 보라색오류
- spring guide
- developer
- java
- ios
- schemes
Archives
- Today
- Total
목록세트 set (1)
Dev_Dylan
Swift Basic _ Data Type (2)
🤟CHAPTER 4 데이터 타입 고급 swift는 데이터 타입을 안심하고 사용할 수 있다. ... 또한 var name = “names” String이라는 타입을 결정해준다. typealias 를 사용해 타입의 별칭을 정할 수 있다 typealias isInt = Int var age : isInt = 8 👉Tuple 튜플 Tuple : 지정된 데이터의 묶음 var person: (String, String, Int) = ("IOS", "Study", 100) //인덱스를 통해 값을 빼 낼수 있다. print(person.0) // IOS print(person.2) // 100 //혹은 var people: (name: String, job : String ,age: Int) = ("Kane" , "P..
iOS/iOS_Swift
2022. 1. 28. 18:04