분류 전체보기(350)
-
UINavigationController
## 기본 네비게이션바 숨김 self.navigationController.navigationBarHidden = YES; ## 네비게이션바 숨김 상태에서 백스와이프 기능 사용 self.navigationController.interactivePopGestureRecognizer.delegate = nil; self.navigationController?.interactivePopGestureRecognizer?.delegate = nil
2022.01.25 -
[Command] 형상관리(svn, git) 파일 정리
# git 관련 파일 정리 > find . -type d -name .git -depth -exec rm -rf {} \; -print # svn 관련 파일 정리 > find . -type d -name .svn -depth -exec rm -rf {} \; -print ## OSX 관련 파일 정리 > find . -type f -name .DS_Store -depth -exec rm -rf {} \; -print
2022.01.21 -
[OSX-Command] xcode-select
개발자도구(Xcode) 디렉토리의 경로를 출력하거나 변경 # -p --print-path : 활성화된 개발자도구의 경로를 출력 > xcode-select -p /Applications/Xcode.app/Contents/Developer # -s --switch : 활성화시킬 개발자도구의 경로 설정 > xcode-select --switch /Applications/Xcode.app/Contents/Developer xcode-select: error: --switch must be run as root (e.g. `sudo xcode-select --switch `). > sudo xcode-select --switch /Applications/Xcode.app/Contents/Developer Pass..
2022.01.19 -
[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 -
[Site] 서버 SSL 정보 확인
link : https://www.ssllabs.com/ssltest SSL Server Test (Powered by Qualys SSL Labs) SSL Server Test This free online service performs a deep analysis of the configuration of any SSL web server on the public Internet. Please note that the information you submit here is used only to provide you the service. We don't use the domain names or www.ssllabs.com 조사하고자 하는 사이트의 도메인을 입력하면 적용된 인증서 정보를 보여준다.
2022.01.07 -
Android NFC Mode
■ 기본모드 모바일 결제, NFC 태그 읽기와 쓰기 등 모든 NFC 기능을 사용. ■ 카드모드 NFC 카드 기능을 이용한 교통 및 신용카드 등의 모바일 결제서비스만 사용가능
2022.01.04