본문 바로가기

iOS

iPhone Model Number 아이폰 모델명 arm64 Simulator x86_64 Simulator i386 Simulator iPod1,1 iPod Touch 1st Gen iPod2,1 iPod Touch 2nd Gen iPod3,1 iPod Touch 3rd Gen iPod4,1 iPod Touch 4th Gen iPod5,1 iPod Touch 5th Gen iPod7,1 iPod Touch 6th Gen iPhone1,1 iPhone iPhone1,2 iPhone 3G iPhone2,1 iPhone 3GS iPhone3,1 iPhone 4 iPhone3,2 iPhone 4 iPhone3,..
ITMS-90626: Invalid Siri Support 문제 해결 ITMS-90626: Invalid Siri Support - Localized description for custom intent: 'Default' not found for locale: koITMS-90626: Invalid Siri Support - Localized title for custom intent: 'Default' not found for locale: ko 시리사용하는데 다국어가 잘 적용 안되어서 다음과 같은 메일이 왔다.다음과 같이 Base를 체크해주면 해결된다
ITMS-91056: Invalid privacy manifest 문제 해결 방법 ITMS-91056: Invalid privacy manifest 해당 오류는 개인정보 강화로 인해 App privacy를 소스에 넣어줘야 한다 1. xcode 실행2. File > New > File3. App privacy 파일 생성 (파일 이름 "PrivacyInfo")4. 해당 내용 추가NSPrivacyAccessedAPITypesNSPrivacyAccessedAPITypeNSPrivacyAccessedAPICategoryFileTimestampNSPrivacyAccessedAPITypeReasons3B52.1NSPrivacyAccessedAPITypeNSPrivacyAccessedAPICategoryDiskSpaceNSPrivacyAccessedAPITypeReasonsE174.1NSPrivac..
NMapsMap 네이버 맵 링크 에러 Pods/NMapsMap/framework/NMapsMap.framework/NMapsMap, building for iOS Simulator-x86_64 but attempting to link with file built for unknown-unsupported file format ( 0x76 0x65 0x72 0x73 0x69 0x6F 0x6E 0x20 0x68 0x74 0x74 0x70 0x73 0x3A 0x2F 0x2F ) 네이버 pod 설치 전 해당 작업들을 해준다 1. sudo gem install cocoapods // cocoapods 설치 2. brew install git-lfs // homebrew 사용시 git-lfs 설치 (home brew 설치 방법 - 터미널 -> 아래 명..
The app delegate must implement the window property if it wants to use a main storyboard file. iOS 12에서 나오는 문제다. AppDelegate.h 에 UIWindow *window 를 추가해주면 잘된다
[swift] Action extension iOS13 iOS13 이하에서는 잘되던 loadItem이 13부터는 파일을 못가져오는 에러가 발생한다. ㅠㅠ provider.loadItem(forTypeIdentifier: kUTTypeData as String, options: nil, completionHandler: { (string, error) in let data = NSData.init(contentsOf:string as! URL) }) 해결 방안 : kUTTypeData 타입을 kUTTypeURL변경하여 해보자!! provider.loadItem(forTypeIdentifier: kUTTypeURL as String, options: nil, completionHandler: { (string, error) in let data = NSData...
iOS 13.1 beta 2 1. downLoad Link https://developer.apple.com/download/ 로그인 - Apple idmsa.apple.com 2. release note https://developer.apple.com/documentation/ios_ipados_release_notes/ios_ipados_13_1_beta_2_release_notes?language=objc iOS & iPadOS 13.1 Beta 2 Release Notes | Apple Developer Documentation Article iOS & iPadOS 13.1 Beta 2 Release Notes Update your apps to use new features, and test your apps agains..
iOS 13 개발관련 변경점.. 1. Swift 5.1 - iOS13이 되면서 Swift5.0으로 complie된 라이브러리나 프레임워크는 5.1로 재컴파일이 필요한것으로 보임 2. UI - Dark mode 지원으로 인해 기존 디폴트 color나 이미지등 수정 필요 - 기존 constraint와 코드로 조정하는 경우 UI가 틀어지는 경우가 발생 ios13분기 처리 필요 3. Apple login - Apple 로그인 사용 권장을 위해 소셜로그인 등 외부 로그인이 가능한경우 apple로그인을 적용해야 하는 경우가 발생할수도 있음 (리젝사유인지는 추후 검토)