분류 전체보기(344)
-
[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 -
Storyboard 에서 UINavigation Controller 추가하기
1. NavigationController 을 추가할 ViewController을 선택 2. Editor > Embed In > Navigation Controller 선택 3. Navigation Controller 가 적용된다.
2021.12.30 -
iOS 8 이상에서 앱 실행시 마다 DocumentDirectory가 변경되는 문제
NSLog(@"DocumentDirectory: %@", [NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES) objectAtIndex:0]); // DocumentDirectory: /var/mobile/Containers/Data/Application/7D7CA3C6-F44B-4F3E-BDD6-148E277B8FF9/Documents // DocumentDirectory: /var/mobile/Containers/Data/Application/DA88F906-0D74-4B85-8341-4F67686A8791/Documents // DocumentDirectory: /var/mobile/Containers/Dat..
2021.12.29 -
NSNumberFormatter
# NSNumberFormatterDecimalStyle 10진수값 3자리 수마다 콤마(,)를 찍는다. 소수점 3자리 이하 값은 버린다. NSNumberFormatter *numberFormatter = [[NSNumberFormatter alloc] init]; [numberFormatter setNumberStyle:NSNumberFormatterDecimalStyle]; NSNumber *num = @1234567890.1234; NSLog(@"%@", [numberFormatter stringFromNumber:num]); // 1,234,567,890.123 # NSNumberFormatterNoStyle 소수점 값은 버린다. NSNumberFormatter *numberFormatter = [..
2021.12.24 -
2021년 앱스토어 연휴기간 공지 (11월, 12월 크리스마스)
연휴 기간에도 앱 제출이 가능합니다 2021년 11월 08일 올해는 다가오는 연휴 기간에도 App Store Connect에 앱을 제출할 수 있습니다. App Store의 가장 바쁜 시기를 대비하여 앱을 최신 상태로 준비하세요. 앱 제출량이 증가하는 시기인 만큼 승인 시간에 민감한 앱은 일찍 제출해 주세요. 연휴 기간(11월 24일~28일, 12월 23일~27일)에는 앱 심사가 지연될 수 있다는 점을 유의하세요. https://developer.apple.com/kr/news/?id=y4fgrhhe 연휴 기간에도 앱 제출이 가능합니다 - 뉴스 - Apple Developer 올해는 다가오는 연휴 기간에도 App Store Connect에 앱을 제출할 수 있습니다. App Store의 가장 바쁜 시기를 대..
2021.12.23