336x280(권장), 300x250(권장), 250x250, 200x200 크기의 광고 코드만 넣을 수 있습니다.
func application(_ application: UIApplication, didRegisterForRemoteNotificationsWithDeviceToken deviceToken: Data) {
var token: String = ""
for i in 0..<deviceToken.count {
token += String(format: "%02.2hhx", deviceToken[i] as CVarArg)
}
print(token)
}
https://stackoverflow.com/a/24979958
Mac 에서 Easy APNs Provider 을 이용하면 된다.
아주 쉽게 할 수 있다.
'나의 플랫폼 > iOS' 카테고리의 다른 글
[iOS] HTML 태그에 UIFont 적용 하기 (0) | 2017.06.09 |
---|---|
[iOS] Archives 보기 (0) | 2017.06.01 |
[iOS][Animation] 혹시 CAKeyframeAnimation이 동작하지 않을때 (0) | 2017.05.29 |
[iOS][Animation] UIView resume, pause (0) | 2017.05.29 |
[iOS] 백그라운드, 포그라운드 확인 (0) | 2017.05.26 |