반응형
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 |
Tags
- ios
- visualstudiocode
- datetime
- wrap
- swift
- react
- Flutter
- 데스크테리어
- 춘식
- GitHub
- listview
- 데스크셋업
- AppBar
- M1
- database
- 카카오
- sqflite
- list
- AppleSilicon
- xcode
- 내돈내산
- GetX
- 플러터
- VSCode
- Android
- 라이언
- 간단리뷰
- error
- Git
- TextField
Archives
- Today
- Total
목록grammar (1)
welcome to my blog
[Swift] 몇가지 정리 (enum, random, optional, class, generalType)
enum enum Device : String { case first = "galaxy" case second = "iphone" } let DeviceDevice = Device.second print("DeviceDevice : \(DeviceDevice)") //DeviceDevice : second print("DeviceDevice : \(DeviceDevice.rawValue)") //DeviceDevice : iphone enum의 값을 알고싶다면 .rawValue 로 접근 enum Market { case fish(name:String) case fruit(name:String) case smartphone(name:String) func getName() -> String { switch..
iOS
2021. 11. 12. 20:17