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