출처http://kka7.tistory.com/7 흐름제어Swift 의 for-in 문은 array, dictionary, range, string, sequences 에서의반복을 쉽게해준다. switch 의 case 는 다음 case 로 넘어가지 않는다.일반적인 C 에서 break 문을 빼먹는 실수로 발생되는 오류를 피하게해준다. For Loop for index in 1...5 { print("\(index) times 5 is \(index * 5)") } 특별히 index 가 필요없다면 아래와 같이 ( _ ) 언더바를 이용할 수 있다. let base = 3let power = 10var answer = 1 for _ in 1...power { answer *= base} print("\(base..
Numbers12/4 #= 3.0 ,실수형으로 반환한다. 18//4 #= 4 #몫 5 ** 3 #= (5 * 5 * 5) (지수) 변수설정은 변수명 = 값으로 한다.tuna = 5 20 + tuna #=25 String 변수설정 String 을 위해서는 single quote ( ' ' ) 또는double quote ( " " ) 를 사용한다. string 에 quote 가 있을경우,"I don't think she is 20"'She said, "What part of the cow is the meatloaf from?"'으로 타입이 다른 것으로 감싸주거나 일반적으로 사용하는 escape (\) 를 사용하면된다. string = 'string' string = "I don't think she is ..
- Total
- Today
- Yesterday
- AWS
- Swift 3
- coredata
- applicationWillResignActive
- Swift 3.0
- CGImage
- delegate
- ios
- Arc
- RunLoop
- set
- docker
- thread
- HTTP
- Block
- UIView
- Swift
- Swift3
- NSManagedObjectContext
- CIImage
- dictionary
- NSManagedObjectModel
- Swfit
- EffectiveObjectiveC
- 꺼내먹어요
- NSManagedObject
- optional
- 읽기 좋은 코드가 좋은 코드다
- string
- workerThread
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |