일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- inflearn
- 자바 스터디
- 백준
- 자바공부
- java
- 자바
- toy project
- 리뷰
- 키노
- 영화기록
- Flutter Toy Project
- 토이프로젝트
- 새벽녘 소소한 기록
- 플러터
- 영화
- 일기
- Flutter
- SOPT
- 영화일기
- 코딩공부
- 스프링 입문
- 인프런
- backend
- 도서리뷰
- sopt 35기
- 백엔드
- 영화후기
- sopt ios
- IOS
- 영화리뷰
- Today
- Total
목록[iOS] (4)
새벽의 기록
SwiftUI TextField의 글자 수 제한하는 방법구글링 해 본 결과 Modifier도 만들고 extention도 추가하고.. 등등 여러 방법이 많았지만나는 그냥 간단하게 하나만 만들고 싶은건데 다 너무 복잡한 느낌을 받았다... 그래서 그냥 onChange를 이용해서 직접 구현했다. 뭐 번거로운 과정없이 코드 몇 줄만 끄적끄적 하면 끝import SwiftUIstruct ContentView: View { @State private var text = "" var body: some View { VStack { TextField("Enter text", text: $text) .onChange(of: text) { newValu..
다른 함수를 전달인자로 받거나 함수실행의 결과를 함수로 반환하는 함수map https://developer.apple.com/documentation/swift/array/map(_:)-87c4d map(_:) | Apple Developer DocumentationReturns an array containing the results of mapping the given closure over the sequence’s elements.developer.apple.com # case1 let cast = ["Vivien", "Marlon", "Kim", "Karl"]let lowercaseNames = cast.map { $0.lowercased() }// 'lowercaseNames' == ["vi..
모든 요소가 특정 조건을 만족하는지 확인하는 메서드 https://developer.apple.com/documentation/swift/array/allsatisfy(_:) allSatisfy(_:) | Apple Developer DocumentationReturns a Boolean value indicating whether every element of a sequence satisfies a given predicate.developer.apple.com 모든 요소가 특정 조건을 만족하는지 확인하는 메서드 # case1 let names = ["Sofia", "Camilla", "Martina", "Mateo", "Nicolás"]let allHaveAtLeastFive = names.allS..
두 개의 시퀀스를 조합하여 새로운 하나의 시퀀스를 생성하는 함수 https://developer.apple.com/documentation/swift/zip(_:_:) zip(_:_:) | Apple Developer DocumentationCreates a sequence of pairs built out of two underlying sequences.developer.apple.com두 개의 시퀀스를 조합하여 새로운 하나의 시퀀스를 생성하는 함수 # case1let words = ["one", "two", "three", "four"]let numbers = 1...4for (word, number) in zip(words, numbers) { print("\(word): \(number)"..