목록개발자 (2)
NewGen
ios 버전별로 현재 점유율이 얼마나 진행되고 있는지 확인 가능한 공식 사이트 이다. 의외로 개발하다보면, 버전별로 문제점이 다르게 나타남. == iOS 버전별 점유율 확인 https://developer.apple.com/kr/support/app-store/ App Store - 지원 - Apple Developer App Store App Store에서 Mac, iPhone, iPad, Apple Watch 및 Apple TV용 앱을 쉽게 찾고 구입하고 다운로드할 수 있습니다. 앱을 배포할 준비가 되면, 앱을 빌드하고 App Store에 배포하는 데 필요한 모든 것을 App developer.apple.com

푸시 노티용 인증서는 이미 만들었다는 가정하에... 1. pod 설치 프로젝트의 podfile에 아래 추가. pod 'AzureNotificationHubs-iOS' pod install 하면 pod 설치됨. 2. capabilities 추가 3. appdelegate.swift 에 MSNotificationHubDelegate 추가 @UIApplicationMain class AppDelegate: UIResponder, UIApplicationDelegate, UNUserNotificationCenterDelegate, MSNotificationHubDelegate { import WindowsAzureMessaging import UserNotifications //Hyunny_noti privat..