일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- format형식
- snapkit
- SWIFT
- kakaomap
- autolayout
- NotificationCenter
- CoreLocation
- Kotlin
- cocoapods
- Appearance변경
- programmers
- UIStackView
- UserDefaults
- Alert
- pod install
- android
- swiftUI
- 코딩테스트
- segue
- ViewModifier
- alamofire
- SwiftUI_Preview_Provider
- ios15
- Java
- ios
- image
- EventKit
- AsyncImage
- 백준
- MapKit
Archives
- Today
- Total
목록PS (1)
감자주먹밥
Swift PS 할때 유용한 것
입력 readLine() var input = readLine()! //String 으로 들어온다. var input = readLine()!.split(separator: " ").map {Int($0)!} //공백있는 숫자 나눠서 받을 때 강제 언래핑 해주는 것은 readLine의 타입이 Optional이 붙은 문자열이기 때문이다. 공백이 들어올 수 도 있으니깐! 진법 변환 n진수를 10진수로 변환 let binary = "111" // let decimal = Int(binary, radix: 2)! // radix가 현제 진법을 나타낸다. 10진수를 n진수로 변환 let decimal = 5 let binary = String(decimal, radix: 2) //uppercase를 true로 해..
IOS/Swift
2021. 9. 1. 22:17