티스토리 뷰
출처
옵셔널 (Optional)
let possibleNumber = "123"
let convertedNumber = Int(possibleNumber)
print(type(of: convertedNumber)) //Optional<Int>
print("Converted Number is \(convertedNumber)") //Converted Number is Optional(123)
nil
If 문과 강제 언래핑 (If & Forced Unwrapping)
if convertedNumber != nil {
print("convertedNumber has value")
}
if convertedNumber != nil {
print("converted Number is \(convertedNumber!)") //converted Number is 123
}
옵셔널 바인딩 (Optional Biniding)
if let constantNumber = convertedNumber {
print(constantNumber)
}
if let actualNumber = Int(possibleNumber) {
print("\"\(possibleNumber)\" has an integer value of \(actualNumber)")
} else {
print("\"\(possibleNumber)\" could not be converted to an integer")
}
위 코드의 뜻은 Int(possibleNumber) 로 나온 Optional <Int> 값이 값이 있다면
옵셔널에 포함된 값으로 새로운 상수 actualNumber 를 설정한다. 라는 것이다.
actualNumber 는 Optional 값이 아니기 때문에 unwrap 해서 사용할 필요가 없다.
꼭 상수가 아니라 변수도 사용할 수 있다.
필요하다면 하나의 If 문 안에서 , 로 구분하여 여러개의 옵셔널 바인딩과
Boolean 조건들을 포함할 수 있다.
if let firstNumber = Int("4"),
let secondNumber = Int("42"),
firstNumber < secondNumber && secondNumber < 100 {
print("\(firstNumber) < \(secondNumber) < 100")
}
암시적으로 언래핑된 옵셔널 (Implecitly Unwrapped Optionals)
옵셔널은 상수나 변수가 "값 없음" 을 가지도록 허용해주는 것이다.
프로그램 구조 상 처음에 값을 설정한 후에 옵셔널이 항상 값을 가지고 있는 것이
분명할 때가 있다. (nonnull 의 경우)
이런 종류의 옵셔널은 암시적으로 언레핑된 옵셔널로 정의된다.
옵셔널로 만들고자 하는 타입의 뒤에 물음표 대신 느낌표를 붙여준다.
let possibleString: String? = "An optional string."
let forcedString: String = possibleString! // requires an exclamation mark
let assumedString: String! = "An implicitly unwrapped optional string."
let implicitString: String = assumedString
나중에라도 nil 이 될 가능성이 있을 때 암시적으로 언래핑된 옵셔널은 사용하지 않아야한다.
변수가 살아있는 동안 nil 값에 대해 확인이 필요하면 일반 옵셔널을 사용해야한다.
값이 포함되어있는지 확인하기 위해 암시적으로 언래핑된 옵셔널을 일반 옵셔널처럼 처리할 수 있다.
if assumedString != nil {
print(assumedString)
}
하나의 문장에서 값을 확인하고 언래핑하기 위해
암시적으로 언래핑된 옵셔널을 옵셔널 바인딩으로 사용할 수 있다.
if let definiteString = assumedString {
print(definiteString)
}
오류 처리 (Error Handling)
func canThrowAnError() throws {
// this function may or may not throw an error
}
do {
try canThrowAnError()
} catch {
// handle error
}
do {
try canThrowAnError()
} catch let error as NSError {
// handle error
}
do 키워드는 새로운 포함범위를 만들며
하나 이상의 catch 절에 오류를 전달한다.
Assert
let age = -3
assert(age >= 0, "A person's age cannot be less than zero")
'iOS 개발 > Swift' 카테고리의 다른 글
[Swift 3] 흐름 제어 (Flow Control / for, while, if-else, switch, fallthrough, guard, label, available) (0) | 2017.04.13 |
---|---|
[Swift 3] 컬렉션 타입 (Collection Types_Array, Set, Dictionary) (0) | 2017.04.13 |
[Swift 3] 문자열과 문자 (String, Characters) (0) | 2017.04.12 |
[Swift 3] 기본 연산자 (Basic Operators) (0) | 2017.04.12 |
[Swift 3] 기본사항 -1 (상수, 변수, 자료형, Tuple) (0) | 2017.04.12 |
- Total
- Today
- Yesterday
- Arc
- optional
- thread
- dictionary
- docker
- 꺼내먹어요
- Swift 3
- Swift 3.0
- applicationWillResignActive
- CGImage
- Block
- RunLoop
- Swift
- HTTP
- NSManagedObjectModel
- workerThread
- EffectiveObjectiveC
- NSManagedObject
- 읽기 좋은 코드가 좋은 코드다
- coredata
- NSManagedObjectContext
- Swfit
- string
- set
- CIImage
- delegate
- UIView
- ios
- AWS
- Swift3
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |