분류 전체보기(344)
-
NSURL
# NSURL 생성 NSString *strUrl = @"https://johnny:p4ssw0rd@www.example.com:443/script.ext;param=value?query=value#ref"; NSURL *url = [NSURL URLWithString:strUrl]; var strUrl = "http://someurl.com/something" var url = URL(string: strUrl) var domain = url?.host # NSURL 객체 구조 https://johnny:p4ssw0rd@www.example.com:443/script.ext;param=value?query=value#ref Component Value scheme https user johnny pas..
2021.04.08 -
경로(Path), 파일명, 확장자 조작 함수
# import, 변수초기화 import os org_path = "/path1/path2/file.jpg" # 파일 추출 file = os.path.basename(org_path) print("파일명 추출", file) # 파일명 추출 file.jpg # 경로 추출 path = os.path.dirname(org_path) print("경로 추출", path) # 경로 추출 /path1/path2 # 경로와 파일명 추출 path, file = os.path.split(org_path) #- 경로와 파일명을 분리 print("경로와 파일명 추출", path, file) # 경로와 파일명 추출 /path1/path2 file.jpg # 파일명과 확장자 추출 filename, fileext = os.pat..
2021.03.12 -
iPhone 생체인증(Biometrics) 지원여부 확인
## 생체인증(Biometrics) 지원여부 - (BOOL) isSupportBiometric { if (![LAContext class]) { return NO; } LAContext *laContext = [[LAContext alloc] init]; NSError *error = nil; if (![laContext canEvaluatePolicy:LAPolicyDeviceOwnerAuthenticationWithBiometrics error:&error]) { return NO; } return YES; } ## 지문인증(TouchID) 지원여부 - (BOOL) isSupportTouchID { if (![LAContext class]){ return NO; } LAContext *laContex..
2021.03.12 -
[Application] The app delegate must implement the window property if it wants to use a main storyboard file.
Xcode12.2 에서 Run 실행시 검은색 화면만 나오는 문제 발생 콘솔로그에 아래 메시지가 노출 [Application] The app delegate must implement the window property if it wants to use a main storyboard file. ▦ 해결 방법 AppDelegate.h @interface AppDelegate : UIResponder @property (strong, nonatomic) UIWindow *window; // 추가 @end
2021.03.09 -
[Tool] MachOView - 라이브러리 심볼(Symbols) 내용을 볼 수 있는 도구
MachOView is a visual Mach-O file browser 라이브러리 심볼(Symbols) 내용을 볼 수 있는 도구 sourceforge.net/projects/machoview/ MachOView Download MachOView for free. MachOView is a visual Mach-O file browser. It provides a complete solution for exploring and in-place editing Intel and ARM binaries. sourceforge.net github.com/gdbinit/MachOView gdbinit/MachOView MachOView fork. Contribute to gdbinit/MachOView deve..
2020.12.31 -
Xcode 지원 정보
developer.apple.com/kr/support/xcode/ Xcode - 지원 - Apple Developer 문의하기 어떻게 도와드릴 수 있는지 알려주시면 핸드폰이나 이메일을 통해 해결 방법을 찾아드립니다. 지원받기 developer.apple.com 최소 요구 사항 및 지원되는 SDK Xcode 버전필요한 최소 OSSDK아키텍처OS시뮬레이터Swift Xcode 12.3 베타 macOS Catalina 10.15.4(Intel 기반 Mac) macOS Big Sur 11.0 (Apple 실리콘 기반 Mac) iOS 14.3 macOS 11.1 tvOS 14.3 watchOS 7.3 DriverKit 20.0 x86_64 armv7 armv7s arm64 arm64e iOS 9.0-14.3 iP..
2020.12.26