4
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

mBaas (nifty) + Swift3でPush通知をお試し

Posted at

Swift3に慣れてなかったので少々時間をかけてしまったため、
掲載しておきます。

手間取ったこと

  1. p12証明書にパスワードを設定してしまったために、通知がエラーになってた
  2. 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の設定

ライブラリ.png

Push通知利用.png

バックエンドでのリモート通知許可.png

ビルドしておかないとApple Developerの
Select an App ID for your Apple Push Notification service SSL Certificate (Sandbox)
で選択できないと思います。


3.デベロッパーセンターで通知用の証明書作成と、通知利用設定

通知許可の証明書作成1.png

対象アプリ選択.png


鍵のダウンロードを行い、ダウンロードした鍵ファイルをダブルクリックして、キーチェーンに登録する


対象アプリでプッシュ通知を利用するため、Activeに設定
PushNotificationを有効に.png


4.Niftyクラウドのmobile Backendで、push通知利用のための鍵作成準備

MacのFinder -> アプリケーション -> ユーティリティ -> キーチェーンアクセスを起動
鍵の選択.png

書き出し1.png

ここはブランクでないと通知時にエラーになります。
鍵のパスワード.png

作成したp12ファイルを適当な場所へ保存します。


5.Niftyクラウドのmobile Backendで、push通知設定

プッシュ通知の許可.png

鍵のアップロード.png


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 {
            // 端末情報の検索に失敗した場合の処理
        }
    }

7.通知受信確認
プッシュ通知の作成.png

アプリをバックグラウンドにするか、終了して待ちます。
IMG_1684.PNG

無事着信したら最初の一歩は完了です。


この実装でできていないこと

できてないことだらけですが、

  1. アプリ終了時に通知メッセージをタップしてもアプリが起動しない
  2. 通知からアプリに遷移した時に特定の動作をさせる実装ができていない
  3. リリース環境時の課題の検証ができていない。

など、たくさんありますので、まずどんなものか試したいという方のお役に立てればと思います。

4
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
4
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?