Swift3に慣れてなかったので少々時間をかけてしまったため、
掲載しておきます。
手間取ったこと
- p12証明書にパスワードを設定してしまったために、通知がエラーになってた
- swift3向けのサンプルコードが見当たらなくてリファレンスみたりで時間をしまった
1.実装手順 CocoapodsでNCMBをインストール
# Uncomment the next line to define a global platform for your project
# platform :ios, '9.0'
target 'push_sample' do
# Comment the next line if you're not using Swift and don't want to use dynamic frameworks
use_frameworks!
pod 'NCMB', :git => 'https://github.com/NIFTYCloud-mbaas/ncmb_ios.git'
end
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['SWIFT_VERSION'] = "3.0"
end
end
end
2.ライブラリの追加とCapabilityの設定
ビルドしておかないとApple Developerの
Select an App ID for your Apple Push Notification service SSL Certificate (Sandbox)
で選択できないと思います。
3.デベロッパーセンターで通知用の証明書作成と、通知利用設定
鍵のダウンロードを行い、ダウンロードした鍵ファイルをダブルクリックして、キーチェーンに登録する
4.Niftyクラウドのmobile Backendで、push通知利用のための鍵作成準備
MacのFinder -> アプリケーション -> ユーティリティ -> キーチェーンアクセスを起動
作成したp12ファイルを適当な場所へ保存します。
5.Niftyクラウドのmobile Backendで、push通知設定
6.AppDelegate.swiftに通知受け入れの実装
AppDelegate.swift
import UIKit
import NCMB
import UserNotificationsUI
import UserNotifications
@UIApplicationMain
class AppDelegate: UIResponder, UIApplicationDelegate {
var window: UIWindow?
let applicationkey = "ニフティクラウドのmbile backendで生成したキー"
let clientkey = "ニフティクラウドのmbile backendで生成したキー"
func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplicationLaunchOptionsKey: Any]?) -> Bool {
NCMB.setApplicationKey(applicationkey, clientKey: clientkey)
// デバイストークンの要求
UNUserNotificationCenter.current().requestAuthorization(options: [.alert, .badge, .sound]) { (granted, error) in
// Enable or disable features based on authorization.
}
application.registerForRemoteNotifications()
return true
}
// UIApplication.shared.registerForRemoteNotifications()によって呼び出される
func application(_ application: UIApplication, didRegisterForRemoteNotificationsWithDeviceToken deviceToken: Data){
// 端末情報を扱うNCMBInstallationのインスタンスを作成
let installation = NCMBInstallation.current()
// デバイストークンの設定
installation?.setDeviceTokenFrom(deviceToken as Data!)
// 端末情報をデータストアに登録
installation?.saveInBackground { (error) -> Void in
if (error != nil){
// 端末情報の登録に失敗した時の処理
if ((error as! NSError).code == 409001){
// 失敗した原因がデバイストークンの重複だった場合
// 端末情報を上書き保存する
self.updateExistInstallation(currentInstallation: installation!)
}else{
// デバイストークンの重複以外のエラーが返ってきた場合
}
}else{
// 端末情報の登録に成功した時の処理
}
}
}
// 端末情報を上書き保存するupdateExistInstallationメソッドを用意
func updateExistInstallation(currentInstallation : NCMBInstallation){
let installationQuery: NCMBQuery = NCMBInstallation.query()
installationQuery.whereKey("deviceToken", equalTo:currentInstallation.deviceToken)
do {
let searchDevice = try installationQuery.getFirstObject()
// 端末情報の検索に成功した場合
// 上書き保存する
currentInstallation.objectId = (searchDevice as AnyObject).objectId
currentInstallation.saveInBackground { (error) -> Void in
if (error != nil){
// 端末情報の登録に失敗した時の処理
}else{
// 端末情報の登録に成功した時の処理
}
}
} catch _ as NSError {
// 端末情報の検索に失敗した場合の処理
}
}
無事着信したら最初の一歩は完了です。
この実装でできていないこと
できてないことだらけですが、
- アプリ終了時に通知メッセージをタップしてもアプリが起動しない
- 通知からアプリに遷移した時に特定の動作をさせる実装ができていない
- リリース環境時の課題の検証ができていない。
など、たくさんありますので、まずどんなものか試したいという方のお役に立てればと思います。