분류 전체보기(344)
-
Mac OSX 한자(한문) 입력 방법
변환하고 싶은 한글이 선택된 상태에서 Option + Enter을 입력하면 한자선택창이 나타난다.
2022.03.04 -
[OSX-Mac] 공인(공동)인증서 pfx 파일 변경 프로그램
pfx파일을 이용할 경우 웹상에서 전자서명을 할수 있다. nice.checkplus.co.kr 에서 제공하는 프로그램. "금융감독원 | 통합연금포털" 에서 퇴직금 확인하던중 맥에서 인증서 플러그인을 지원하지 않아 위프로그램을 이용해서 인증 진행함.
2022.02.07 -
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