Dev49 [iOS] 기본 - Property List (프로프티 리스트) Info.plist에 있는 설정 정보들은 앱이 동작하는데 큰 영향을 미치는 파일이다. 상세한 내용 : 애플 문서 - Information Property List Key Reference https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Introduction/Introduction.html About Info.plist Keys and Values About Info.plist Keys and Values To provide a better experience for users, iOS and macOS rely on the presence of special metadata i.. 2020. 4. 24. [Push Notification] 디바이스 토큰 변경 조건 APN은 다음과 같은 여러 가지 이유로 새로운 장치 토큰을 발행 할 수 있습니다. 사용자가 새 기기에 앱을 설치 사용자가 백업에서 장치를 복원 사용자가 운영 체제를 다시 설치합니다 다른 시스템 정의 이벤트 결과적으로, 앱은 APN-to-Device Connection Trust 및 Device Tokens에 설명 된대로 시작시 디바이스 토큰을 요청해야합니다. 출처 https://developer.apple.com/library/archive/documentation/NetworkingInternet/Conceptual/RemoteNotificationsPG/APNSOverview.html Local and Remote Notification Programming Guide: APNs Overview Ap.. 2020. 4. 9. [iOS] 시스템 권한 페이지로 이동 위 스크린샷과 같이 아이폰 [설정] 에서 나의 앱의 설정 페이지로 가는 코드 (단순한) if let url = URL(string: UIApplication.openSettingsURLString) { if #available(iOS 10.0, *) { UIApplication.shared.open(url, options: [:], completionHandler: nil) } else { UIApplication.shared.openURL(url) } } 2019. 12. 9. [iOS] BuildNumber auto increment https://www.bsidesoft.com/?p=2970 [iOS] Xcode에 빌드번호를 자동으로 증가 시키기 Xcode로 iOS앱 빌드시 자동으로 빌드 번호를 증가 시키는 방법을 설명합니다. www.bsidesoft.com 위 사이트에서 xcode 빌드번호 자동 올려주기를 build phase의 스크립트로 적용해서 해봤는데, 잘 되었다. 그런데 내가 General에서 직접 빌드번호를 수정한 후 빌드를 해보니 다음 에러메세지가 발생하면서 빌드가 되지 않았다. "Command PhaseScriptExecution failed with a nonzero exit code" 구글링해서 찾아보니 원인은 좀 더 찾아봐야 하지만 해결 방법은 https://stackoverflow.com/questions/17.. 2019. 11. 29. 이전 1 ··· 7 8 9 10 11 12 13 다음