전체 글(344)
-
OSMO POCKET 사용자 매뉴얼(Osmo Pocket User Manual v1.0 KR) 2022.04.29
-
[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 -
정박형 카라반
농막대신 사용하기 좋을것 같은 정박형 카라반 일반 카라반은 번호판이 있어서 점검을 받아야 한다. 가격 : 3070만원 VAT 별도(패밀리기준) https://youtu.be/0FLJzI06RGw
2022.04.26 -
UIModalPresentationStyle
프리젠테이션 스타일은 뷰 컨트롤러가 화면에 표시되는 모양을 제어 합니다. 프레젠테이션하려는 뷰컨트롤러의 modalPresentationStyle 속성에 적절한 상수를 할당하면 됩니다. # 전체화면 프레젠테이션 스타일 UIModalPresentationFullScreen, UIModalPresentationPageSheet, UIModalPresentationFormSheet # 팝오버 스타일 UIModalPresentationPopover, UIModalPresentationOverFullScreen # 현재 컨텍스트 스타일 UIModalPresentationCurrentContext, # 사용자정의 프레젠테이션 스타일 UIModalPresentationCustom # UIModalPresentation..
2022.04.07 -
NSURL URL주소 문자열에 한글 포함되었을때 처리
URL 주소 문자열에 한글이 포함될 경우 NSURL로 변환을 정상적으로 처리하지 못한다. NSString *strURL = @"https://domain.com/테스트파일입니다.pdf"; NSURL *url = [NSURL URLWithString:strURL]; // url : nil NSString 의 stringByAddingPercentEscapesUsingEncoding 메소드를 이용해서 URL의 한글문자열을 처리할 수 있다. NSString *strURL = @"https://domain.com/테스트파일입니다.pdf"; // API_AVAILABLE(macos(10.0,10.11), ios(2.0,9.0), watchos(2.0,2.0), tvos(9.0,9.0)) NSURL *url = [..
2022.04.06 -
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