전체 글(344)
-
앱 전환(App Switch)시 보안 처리
앱 전환(App Switch)시 앱 미리보기 제거 처리 onCreate protected void onCreate(Bundle savedInstanceState) { getWindow().setFlags(WindowManager.LayoutParams.FLAG_SECURE, WindowManager.LayoutParams.FLAG_SECURE); } onResume protected void onResume() { super.onResume(); getWindow().clearFlags(WindowManager.LayoutParams.FLAG_SECURE); } onPause protected void onPause() { super.onPause(); getWindow().setFlags(WindowM..
2022.11.08 -
WKWebView
WKNavigation Delegate 메인 프레임 탐색의 진행 상황을 추적하고 결정하는 방법 메인 프레임 및 서브프레임 탐색에 대한 정책 네비게이션 시작 # 콘텐츠가 메인 프레임에 도착하기 시작할 때 호출 /*! @abstract Invoked when content starts arriving for the main frame. @param webView The web view invoking the delegate method. @param navigation The navigation. */ - (void)webView:(WKWebView *)webView didCommitNavigation:(null_unspecified WKNavigation *)navigation; # 메인 프레임 탐색이 시..
2022.09.15 -
앱 설정 화면 이동
Objective-C NSURL *url = [NSURL URLWithString:UIApplicationOpenSettingsURLString]; [[UIApplication sharedApplication] openURL:url]; Swift UIApplication.shared.open(URL(string:UIApplication.openSettingsURLString)!) _____
2022.08.29 -
이미지 파일에 압축파일 숨기기
Windows ■ 생성하기 > copy /b image.jpg + archive.zip image_archive.jpg ※ zip 파일 이외에도 여러가지 종류의 파일을 추가 가능하다 ■ 추출/분리하기 rename image_archive.jpg image_archive.zip 압축 프로그램을 이용 압축 해제 OSX / Mac ■ 생성하기 > cat image.jpg + archive.zip image_archive.jpg ■ 추출/분리하기 > unzip image_archive.jpg 또는 압축 프로그램을 이용 압축 해제
2022.08.29 -
[Error] Exception in filter Request processing failed; nested exception is org.springframework.web.multipart.MultipartException: Failed to parse multipart servlet request; nested exception is org.apache.commons.fileupload.FileUploadException: Stream end..
현상 iOS NSURLSession 파일 업로드중 서버 오류 발생. PHP 서버에서는 정상적으로 동작하는 코드가 SpringFramework 에서 오류 발생 원인 multipart/form-data 전송 데이터 생성시 Boundary 마지막에. --가 붙지 않아 발생한 오류 해결 방법 마지막 Boundary 뒤에 -- 추가 ------WebKitFormBoundaryuggrEmcb3XoH6hwM-- ------WebKitFormBoundaryuggrEmcb3XoH6hwM Content-Disposition: form-data; name="preImage"; filename="IMG_0043.JPG" Content-Type: image/jpeg ------WebKitFormBoundaryuggrEmcb3X..
2022.08.27 -
주민등록번호 자리별 규칙
YYMMDD-GHIJKLX ◻︎ YYMMDD : 생년월일 ◻︎ G : 출생세기와 성별 1 : 1900년대 태어난 남자 2 : 1900년대 태어난 여자 3 : 2000년대 태어난 남자 4 : 2000년대 태어난 여자 5 : 1900년대 태어난 외국인 남자 6 : 1900년대 태어난 외국인 여자 7 : 2000년대 태어난 외국인 남자 8 : 2000년대 태어난 외국인 여자 9 : 1800년대 태어난 남자 0 : 1800년대 태어난 여자
2022.08.19