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 | 29 | 30 |
Tags
- SWIFT
- Apple Certificate
- conflicting access to memory
- 메모리 접근 충돌
- in-out
- swiftdocs
- UICoordinateSpace
- RIBs Tutorial
- Ribs
- 잡초가득블로그
- 대머리깃허브
- Dependency Rule
- 클린아키텍쳐
- RxCocoa
- iOS Target
- Github file size
- Concurrent
- rib
- Git Large File Storage
- windowScene
- 로버트마틴형
- App Signing
- coordinateSpace
- Automatically manage signing
- memory safety
- iOS 버전 점유율
- ios
- Dispatch.main.sync
- RxSwift
- Large File Storage
Archives
- Today
- Total
목록iOS #Swift (1)
빙수왕의 개발일지

Int to String let str1 = "\(myInt)" // 문자열 보간법 let str2 = String(myInt) // String initializer 사용 String to Int Int(myString) ?? 0 // Integer형식이 아닌 경우(실패하면) nil이 리턴된다. // NSString 사용 ⇒ 이 방법은 (float or double) to String 에 쓰인다. // 이건 실패하면 nil이 아닌 0을 리턴한다. let myInt = (myString1 as NSString).integerValue intValue vs integerValue 테스트 하다보니 아래처럼 2가지 메소드 나옴.. 우린 integerValue를 쓰지만 intValue는 무엇인가? 정답은 32비..
개발/iOS
2021. 6. 16. 02:41