일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- MKMapViewDelegate
- WeatherManager
- MKMapItem
- Startign Assignments
- RunningTimer
- App Store Connect
- swift
- 러닝기록앱
- SwiftUI Boolean 값
- Timer
- weak var
- weatherKit
- Protocol
- Required Reason API
- CoreLocation
- 러닝타이머
- font book
- 영문 개인정보처리방침
- 단일 책임원칙
- UIAlertAction
- UICollectionViewFlowLayout
- dispatchsource
- 서체관리자
- AnyObject
- CLLocationManagerDelegate
- xcode로 날씨앱 만들기
- addannotation
- Xcode
- 클로저의 캡슐화
- 한국어 개인정보처리방침
Archives
- Today
- Total
VesselWheel
String / Character 본문
import UIKit
// String / Character
let str1 = "Swift"
print(type(of: str1))
// String(문자열) : 하나 이상의 문자
let str2 = "C"
print(type(of: str2))
// Character(문자) : 문자 하나만
let str3: Character = "C"
print(type(of: str3))
let str4 = ""
print(type(of: str4))
let str5: String = ""
print(type(of: str5))
// 빈문자열은 Character type 에 할당할 수 없음
// let str6: Character = ""
// 공백문자는 Character type 에 할당할 수 있음
let str6: Character = " "
print(type(of: str6))
let str7 = " "
print(type(of: str7))
print(str7.count)
let str8 = ""
print(type(of: str8))
print(str8.count)
let str9 = String("더조은")
print("str9 :",str9)
// 문자열 생성자로도 빈문자열을 저장할 수 있음
let str10 = String()
print(str10.count)
'Xcode Study' 카테고리의 다른 글
Raw String (0) | 2023.10.16 |
---|---|
Foundation String (1) | 2023.10.16 |
Tuple Decomposition (0) | 2023.10.16 |
tuple (0) | 2023.10.16 |
값 캡쳐하기 : capturing values (0) | 2023.10.16 |