This function searches for one character expression inside a second character expression, returning the starting position of the first expression if found. 특정 문자열의 시작 위치 값을 반환합니다. DECLARE @document VARCHAR(64); SELECT @document = 'Reflectors are vital safety' + ' components of your bicycle.'; SELECT CHARINDEX('bicycle', @document); GO
// // YoutubeView.swift // DoctorSL // // Created by 장정훈 on 2022/05/21. // import SwiftUI import WebKit struct YouTubeView: UIViewRepresentable { let youtubeEmbed: String func makeUIView(context: Context) -> WKWebView { return WKWebView() } func updateUIView(_ uiView: WKWebView, context: Context) { guard let youtubeUrl = URL(string: "https://www.youtube.com/embed/\(youtubeEmbed)") else {return} ..
There is no programmatic way to control the system volume in iOS, iOS에서는 프로그래밍 방식으로 시스템 음량을 조절 할 수 있는 방법을 제공하지 않지 않는다. but you can use the MediaPlayer framework’s MPVolumeView class to present a standard user interface for controlling system volume. 하지만 "MPVolumeView class"를 사용해서 시스템 볼륨을 제어 할 수 있다. extension MPVolumeView { static func setVolume(_ volume: Float) -> Void { let volumeView = MPVolum..
목차 Task await async mainActor Task & await & async & @MainActor init() { Task { await handleCameraPreviews() } } func handleCameraPreviews() async { let imageStream = camera.previewStream .map { $0.image } for await image in imageStream { Task { @MainActor in viewfinderImage = image } } }
목록 앱 스토어(App Store)에 제품 등록 하기 앱 스토어(App Store)에서 제품 정보 및 목록 가져오기 앱 스토어(App Store)에 제품 결제 요청 및 응답 처리하기 In App Purchase API 1 단계 : Apple Developer Program 가입(1년에 약 14만원 정도...) Apple Developer Program은 iPhone, iPad, Mac, Apple Watch 및 Apple TV용 App Store에서 배포용 앱을 제작하는 데 관심이 있는 단체, 개인 및 단독 소유주/독신 사업자를 위한 회원 기반 서비스입니다. 멤버십에는 앱 및 Safari 확장 프로그램의 개발, 테스트 및 배포를 위한 베타 OS 릴리스, 고급 앱 기능 및 도구에 대한 기능이 포함됩니다. ..
- Total
- Today
- Yesterday
- 스프링 프레임워크(spring framewordk)
- jsp 오픈 소스
- 람다식(lambda expression)
- nl2br
- java-개발 환경 설정하기
- .submit()
- docker
- java 키워드 정리
- React
- jstl(java standard tag library)-core
- jstl(java standard tag library)
- System.Diagnostics
- In App Purchase
- 문자 자르기
- 표현 언어(expression language)
- java web-mvc
- 메이븐(maven)
- 진수 변환
- 스프링 시큐리티(spring security)
- MainActor
- await
- system.io
- 스프링 프레임워크(spring framework)
- 인텔리제이(intellij)
- error-java
- java.sql
- 스프링 시큐리티(spring security)-http basic 인증
- 제품 등록
- REST API
- 특정 문자를 기준으로 자르기
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |