출처https://www.raywenderlich.com/163857/whats-new-swift-4 Api ChangesString더 이상 characters array 를 사용할 필요는 없습니다.direct 로 iterate 를 돌 수 있습니다. var str = "Hello🐮" for char in str { print(char) } direct 로 돌 수 있듯이, Sequence, Collection 의 기능들을 모두 사용할 수 있습니다. let count = str.countlet isEmpty = str.isEmptylet elloString = str.dropFirst()let lloString = str.dropFirst(2)let reverseString = String(str.rever..
출처http://kka7.tistory.com/5 Swift 의 String 타입은 Foundation 의 NSString 클래스와 bridged 되어있다.Foundation 은 NSString 에 의해 정의된 메소드들을 사용하기 위해 String 을 확장한다.이는 Foundation 을 포함하면 String 에서 변환(casting) 없이 NSString 메소드를 접근할 수 있다는 의미이다. 문자열 선언 let someString = "Some string literal value" 빈 문자열 초기화var emptyString = String() var anotherEmptyString = "" if emptyString.isEmpty { print("empty string") } 문자열은 값 타입이다..
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 ..
텍스트키트는 iOS 7의 일부분으로 발표되었으나 전통적 의미의 프레임워크는 아니다.기존의 클래스들을 강화하여 NSAttributedString 을 쉽게 다룰 수 있게 설계되었다. NSLayoutManager NSTextStorage 클래스의 객체에 저장되어 있는 문자들의 레이아웃과 출력을 담당한다.복잡한 텍스트 레이아웃을 생성하기 위해여러 개의 UITextView 객체를 함께 이용해 렌더링할 때도 이용할 수 있다.NSLayoutManager 는 NSTextContainer 클래스의 객체를 추가, 삭제, 정렬 등의 작업을 할 수 있는 여러 메소드들을 가지고 있다.또한 NSTextStorage 객체를 프로퍼티로 갖고 있다. 동적 링크 탐지 UITextView 에서 가능하며 (UILabel 은 불가).xib ..
- Total
- Today
- Yesterday
- Swift3
- AWS
- EffectiveObjectiveC
- applicationWillResignActive
- HTTP
- RunLoop
- NSManagedObjectContext
- CIImage
- workerThread
- Swift 3
- NSManagedObject
- CGImage
- 꺼내먹어요
- NSManagedObjectModel
- string
- Swfit
- thread
- delegate
- optional
- coredata
- 읽기 좋은 코드가 좋은 코드다
- Block
- ios
- UIView
- docker
- Arc
- set
- dictionary
- Swift 3.0
- Swift
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |