개발자료(219)
-
volley
최신버전 확인 https://google.github.io/volley/ Volley overview Volley overview Volley is an HTTP library that makes networking for Android apps easier and most importantly, faster. Volley is available on GitHub. Volley offers the following benefits: Automatic scheduling of network requests. Multiple concurrent network google.github.io build.gradle 항목추가 dependencies { ... implementation 'com.android.vo..
2022.05.03 -
[Error] Building for iOS, but the embedded framework 'NaverThirdPartyLogin.framework' was built for iOS + iOS Simulator.
오류메시지 Building for iOS, but the embedded framework 'NaverThirdPartyLogin.framework' was built for iOS + iOS Simulator. 해결방법 Validate Workspace 값을 Yes로 설정
2022.04.27 -
UIModalPresentationStyle
프리젠테이션 스타일은 뷰 컨트롤러가 화면에 표시되는 모양을 제어 합니다. 프레젠테이션하려는 뷰컨트롤러의 modalPresentationStyle 속성에 적절한 상수를 할당하면 됩니다. # 전체화면 프레젠테이션 스타일 UIModalPresentationFullScreen, UIModalPresentationPageSheet, UIModalPresentationFormSheet # 팝오버 스타일 UIModalPresentationPopover, UIModalPresentationOverFullScreen # 현재 컨텍스트 스타일 UIModalPresentationCurrentContext, # 사용자정의 프레젠테이션 스타일 UIModalPresentationCustom # UIModalPresentation..
2022.04.07 -
2022년 4월 25일 부터는 Xcode13(iOS SDK15) 이상에서 빌드 된 앱만 스토어 배포 가능
앱 배포 중 경고 발생해서 관련 내용 정리함. WARNING ITMS-90725: "SDK Version Issue. The app was built with the iOS 14.2 SDK. Starting April 25, 2022, all iOS apps submitted to the App Store must be built with the iOS 15 SDK or later, included in Xcode 13 or later." 4월 25일부터 App Store 제출 요구사항이 시작됩니다 2022년 03월 15일 2022년 4월 25일부터 App Store에 제출하는 iOS, iPadOS 와 watchOS 앱은 iOS 15, iPadOS 15 및 watchOS 8 버전의 SDK를 포함하는 Xc..
2022.03.24 -
UINavigationController
## 기본 네비게이션바 숨김 self.navigationController.navigationBarHidden = YES; ## 네비게이션바 숨김 상태에서 백스와이프 기능 사용 self.navigationController.interactivePopGestureRecognizer.delegate = nil; self.navigationController?.interactivePopGestureRecognizer?.delegate = nil
2022.01.25 -
[Command-OSX] SSL 정보 확인(openssl, curl)
# OpenSSL 이용 echo | openssl s_client -showcerts -connect {domain:port} echo | openssl s_client -showcerts -connect google.com:443 CONNECTED(00000005) depth=1 C = US, O = Google Trust Services LLC, CN = GTS CA 1C3 verify return:1 depth=0 CN = *.google.com verify return:1 --- Certificate chain 0 s:CN = *.google.com i:C = US, O = Google Trust Services LLC, CN = GTS CA 1C3 -----BEGIN CERTIFICATE----..
2022.01.07