일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- optional
- enum
- 디자인패턴
- Swift
- 코딩테스트
- initializer
- struct
- interpace
- Xcode
- Git
- UIKit
- instance
- Protocol
- Class
- initalizer
- type
- tuist
- String
- url
- Foundation
- delegate
- 스위프트
- 이니셜라이저
- Unicode
- init
- Method
- property
- Terminal
- extension
- IOS
- Today
- Total
목록String (4)
아리의 iOS 탐구생활
코딩테스트 연습 - 신규 아이디 추천 카카오에 입사한 신입 개발자 네오는 "카카오계정개발팀"에 배치되어, 카카오 서비스에 가입하는 유저들의 아이디를 생성하는 업무를 담당하게 되었습니다. "네오"에게 주어진 첫 업무는 새로 programmers.co.kr 문제가 아주 친절하다. 1단계부터 7단계까지 순서가 나열되어 있는데, 단계별로 차근차근 구현해보는 문제이다. Swift의 문자열을 잘 다루는 편이라면 그다지 어렵진 않은 문제다. 한꺼번에 많은 것을 하려고 하지말고 단계별로 구현해보는 것을 추천한다. 힌트 String 관련 메소드를 활용하면 쉽게 풀수 있다. 더보기 func solution(_ new_id:String) -> String { var newID = "" // 1단계: 소문자로 치환하기 let..
Strings and Characters — The Swift Programming Language (Swift 5.5) Strings and Characters A string is a series of characters, such as "hello, world" or "albatross". Swift strings are represented by the String type. The contents of a String can be accessed in various ways, including as a collection of Character values. Swi docs.swift.org Strings and Characters — The Swift Programming Language (S..
✔️ Apple 공식문서 참고 Apple Developer Documentation developer.apple.com Strings and Characters — The Swift Programming Language (Swift 5.5) Strings and Characters A string is a series of characters, such as "hello, world" or "albatross". Swift strings are represented by the String type. The contents of a String can be accessed in various ways, including as a collection of Character values. Swi docs.s..
✔️ ceil() 올림 소수점 이하를 모두 버리고 정수부에 +1을 해준다. import Foundation ceil(10.1) // 11 ceil(9.5) // 10 ceil(8.3) // 9 ceil(7.7) // 8 ✔️ floor() 버림 소수점 이하를 모두 버린다. import Foundation floor(10.1) // 10 floor(9.5) // 9 floor(8.3) // 8 floor(7.7) // 7 ✔️ round() 반올림 소수점 이하를 반올림 한다. 0.3 이상은 1로 올리고 미만은 버린다. import Foundation round(10.1) // 10 round(9.5) // 10 round(8.3) // 8 round(7.7) // 8 위 메서드들을 사용하려면 Foundat..