菜鸟教程小白 发表于 2022-12-13 14:31:12

ios - 如何为 iOS 版本 9 + 10(可能还有 8)实现 Apple 推送通知?


                                            <p><p>我没有找到任何正式的 Apple 文档讨论如何同时为旧 iOS 版本以及 iOS 10 正确实现推送通知。而且我看到的独立教程同样涵盖了单个 iOS 版本。</p>

<p>我看到了 iOS 10 的官方文档:
<a href="https://developer.apple.com/library/content/documentation/NetworkingInternet/Conceptual/RemoteNotificationsPG/index.html#//apple_ref/doc/uid/TP40008194-CH3-SW1" rel="noreferrer noopener nofollow">Local and Remote Notifications Overview</a>但它没有评论支持早期的 iO​​S 版本。</p>

<p>还有一个 iOS 9 教程:
<a href="https://www.raywenderlich.com/123862/push-notifications-tutorial" rel="noreferrer noopener nofollow">Push Notifications Tutorial - Ray Wenderlich</a> </p>

<p>我看到了各种关于人们必须做出改变才能让他们的旧解决方案在新版本上运行的 stackoverflow 线程:</p>

<p> <a href="https://stackoverflow.com/questions/32718273/push-notifications-are-not-working-in-ios-9" rel="noreferrer noopener nofollow">Push notifications are not working in iOS 9</a>
其中确实显示了处理 6 - 9 的代码。</p>

<p> <a href="https://stackoverflow.com/questions/39382852/didreceiveremotenotification-not-called-ios-10" rel="noreferrer noopener nofollow">didReceiveRemoteNotification not called , iOS 10</a> </p>

<hr/>

<p>但我没有看到的是正确的做法,从今天开始(使用 iOS 10),但也支持旧设备。 ** <strong>更新</strong> ** App Store 表示只有 6% 的设备下载的应用程序比 ios 9 旧,所以 <strong>如果只支持 9 + 10 更容易,我会这样做。 </strong></p>

<p>(我尝试从 iOS 10 示例开始,但它立即在 iOS 9.3 模拟设备上崩溃,尽管它在 iOS 10 中运行良好。所以我得出结论,我应该从有关正确设置不同版本的信息开始。我可以发布该代码,但我认为这会将这个线程引向错误的方向。我宁愿从“应该”在多个 iOS 版本(包括 10)上工作的内容开始。)</p>

<p>如果我没有找到解决方案,我将开始组合来自不同 stackoverflow 代码片段的代码……但认真的吗?我一定是遗漏了一些东西,因为大概每个 iOS 开发人员都有这个问题。</p>

<hr/>

<p>相反,<strong>我可以从一个较旧的示例开始</strong>,然后按照更改使其适用于 iOS 10 - <strong>但这会充分利用 iOS 10 吗?</strong ></p>

<p>注意:我正在使用 Xamarin C# 进行编程,但 Objective-C 或 Swift 答案同样有用。</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p><strong>这是 Xamarin C# 代码</strong>(与 Objective-C 不同的语法和大小写,但我认为它可以逐行翻译为 Objective-C)。 </p>

<p>在 iOS 9.3 和 iOS 10.2 上测试。</p>

<p>初始化“本地”和“远程”通知:</p>

<pre><code>// &#34;UIApplicationDelegate&#34; is for &#34;local&#34; notifications,
// &#34;IUNUserNotificationCenterDelegate, IMessagingDelegate&#34; for &#34;remote&#34; notifications.
public class AppDelegate : UIApplicationDelegate,
    IUNUserNotificationCenterDelegate, IMessagingDelegate
{
    ...
    public override bool FinishedLaunching( UIApplication application, NSDictionary launchOptions )
    {
      ...
      RegisterForOurRemoteNotifications( this );
      RegisterForOurLocalNotifications();
      ...
    }
    ...

    // --- Comment out if not using Google FCM. ---
    public override void RegisteredForRemoteNotifications( UIApplication application, NSData deviceToken )
    {
      //base.RegisteredForRemoteNotifications( application, deviceToken );
      Firebase.InstanceID.InstanceId.SharedInstance.SetApnsToken( deviceToken,
                                                                   Firebase.InstanceID.ApnsTokenType.Sandbox );
    }

    ...
    // ----- &#34;static&#34;; Could be in another class. -----

    // These flags are for our convenience, so we know initialization was done.
    static bool IsRegisteredForNotifications;
    static bool IsRegisteredForRemoteNotifications;
    // Optional - true when we are using Google &#34;Firebase Cloud Messaging&#34;.
    static bool HasFCM;

    public static void RegisterForOurRemoteNotifications( AppDelegate del )
    {
      // Google &#34;Firebase Cloud Messaging&#34; (FCM) Monitor token generation
      // (Uncomment, if you are using FCM for notifications.)
      //InstanceId.Notifications.ObserveTokenRefresh( TokenRefreshNotification );

      if (UIDevice.CurrentDevice.CheckSystemVersion( 10, 0 )) {
            // iOS 10 or later
            var authOptions = UNAuthorizationOptions.Alert | UNAuthorizationOptions.Badge | UNAuthorizationOptions.Sound;
            UNUserNotificationCenter.Current.RequestAuthorization( authOptions, ( granted, error ) =&gt; {
                Console.WriteLine( granted );
            } );

            // For iOS 10 display notification (sent via APNS)
            UNUserNotificationCenter.Current.Delegate = del;

            // For iOS 10 data message (sent via Google FCM).
            // (Uncomment, if you are using FCM for notifications.)
            // TBD: If NOT using FCM, you may need some other lines of code here.
            //Messaging.SharedInstance.RemoteMessageDelegate = del;

      } else {
            // iOS 9 or before
            var allNotificationTypes = UIUserNotificationType.Alert | UIUserNotificationType.Badge | UIUserNotificationType.Sound;
            var settings = UIUserNotificationSettings.GetSettingsForTypes( allNotificationTypes, null );
            UIApplication.SharedApplication.RegisterUserNotificationSettings( settings );
      }

      UIApplication.SharedApplication.RegisterForRemoteNotifications();
      IsRegisteredForRemoteNotifications = true;

      // Uncomment if using Google &#34;Firebase Cloud Messaging&#34; (FCM).
      //TokenRefreshNotification( null, null );
      //if (UIDevice.CurrentDevice.CheckSystemVersion( 9, 0 )) // Needed to call this twice on iOS 9 for some reason.
      //TokenRefreshNotification( null, null );


      UIApplication.SharedApplication.SetMinimumBackgroundFetchInterval( UIApplication.BackgroundFetchIntervalMinimum );
    }

    public static void RegisterForOurLocalNotifications()
    {            
      // --- Our app&#39;s notification actions. ---
      UNNotificationAction followAction = UNNotificationAction.FromIdentifier( &#34;follow&#34;, PS.LocalizedString( &#34;Follow&#34; ), UNNotificationActionOptions.None );
      UNNotificationAction likeAction = UNNotificationAction.FromIdentifier( &#34;like&#34;, PS.LocalizedString( &#34;Like&#34; ), UNNotificationActionOptions.None );
      // ...

      // --- Our app&#39;s notification categories ---
      UNNotificationCategory followCategory = UNNotificationCategory.FromIdentifier( &#34;followCategory&#34;, new UNNotificationAction[] { followAction, likeAction },
                                                                              new string[] { }, UNNotificationCategoryOptions.None );
      // ...

      // --- All of the app&#39;s categories from above ---
      var categories = new UNNotificationCategory[] { followCategory /*, ...*/ };


      // --- Same for all apps ---
      UIUserNotificationSettings settings = UIUserNotificationSettings.GetSettingsForTypes(
                                                UIUserNotificationType.Alert |
                                                UIUserNotificationType.Badge |
                                                UIUserNotificationType.Sound
            , new NSSet( categories ) );
      UIApplication.SharedApplication.RegisterUserNotificationSettings( settings );


      if (UIDevice.CurrentDevice.CheckSystemVersion( 10, 0 )) {
            UNUserNotificationCenter.Current.SetNotificationCategories( new NSSet&lt;UNNotificationCategory&gt;( categories ) );

            UNUserNotificationCenter.Current.RequestAuthorization( UNAuthorizationOptions.Alert | UNAuthorizationOptions.Sound | UNAuthorizationOptions.Badge,
                                                                  ( result, err ) =&gt; {
                                                                      Console.WriteLine( result.ToString() );
                                                                  } );
      }

      IsRegisteredForNotifications = true;
    }
}


    // -------------------------------------------------------
    // --- These are for Google &#34;Firebase Cloud Messaging&#34; ---
    // (Comment out if not using FCM.)

    public static string Token;

    static void TokenRefreshNotification( object sender, NSNotificationEventArgs e )
    {
      // This method will be fired every time a new token is generated, including the first
      // time. So if you need to retrieve the token as soon as it is available this is where that
      // should be done.
      //var refreshedToken = InstanceId.SharedInstance.Token;

      ConnectToFCM( UIApplication.SharedApplication.KeyWindow.RootViewController );

      // TODO: If necessary send token to application server.
    }


    public static void ConnectToFCM( UIViewController fromViewController )
    {
      Messaging.SharedInstance.Connect( error =&gt; {
            if (error != null) {
                Helper.logD( &#34;Unable to connect to FCM&#34;, error.LocalizedDescription );
            } else {
                //var options = new NSDictionary();
                //options.SetValueForKey( DeviceToken, Constants.RegisterAPNSOption );
                //options.SetValueForKey( new NSNumber( true ), Constants.APNSServerTypeSandboxOption );

                //InstanceId.SharedInstance.GetToken(&#34;&#34;, InstanceId.ScopeFirebaseMessaging
                Token = InstanceId.SharedInstance.Token;

                Console.WriteLine( $&#34;Token: {InstanceId.SharedInstance.Token}&#34; );
                HasFCM = true;
            }
      } );
    }
    // ------------------ End Google FCM ---------------------
    // -------------------------------------------------------
}
</code></pre>

<p>上面的代码初始化您的应用程序,以便它可以接收通知。 </p>

<p><strong>重要提示:</strong>您还需要为您的应用设置适当的权限;请参阅 Apple 文档或问题中提到的链接。你需要这个文件:</p>

<p>权利.plist:</p>

<pre><code>&lt;?xml version=&#34;1.0&#34; encoding=&#34;UTF-8&#34;?&gt;
&lt;!DOCTYPE plist PUBLIC &#34;-//Apple//DTD PLIST 1.0//EN&#34; &#34;http://www.apple.com/DTDs/PropertyList-1.0.dtd&#34;&gt;
&lt;plist version=&#34;1.0&#34;&gt;
&lt;dict&gt;
    &lt;key&gt;aps-environment&lt;/key&gt;
    &lt;string&gt;development&lt;/string&gt;
&lt;/dict&gt;
&lt;/plist&gt;
</code></pre>

上面的 <p><code><string></code> 必须包含“开发”或“生产”。 (我不知道我们的应用程序在这里仍然说“开发”的意义;我还没有检查构建的内容以查看它是否在提交给 Apple 之前被 Xcode 自动更改为“生产”。根据 <a href="https://stackoverflow.com/a/40857877/199364" rel="noreferrer noopener nofollow">https://stackoverflow.com/a/40857877/199364</a> 它确实。)</p>

<hr/>

<p>然后你需要代码来<strong>发送</strong> [例如您的应用告诉您的服务器通知您 friend 的设备您现在正在做什么] 并<strong>接收</strong>本地或远程通知。在我们的应用程序中,该代码与我们特定的通知操作和类别相结合;我没有时间提取一个简洁的版本在这里发布。有关完整详细信息,请参阅 Apple 文档或原始问题中提到的链接。</p>

<p>以下是<strong>接收</strong>通知的基本方法(添加到上面的<code>class AppDelegate</code>):</p>

<pre><code>    public override void ReceivedLocalNotification( UIApplication application, UILocalNotification notification )
    {
      ...
    }

    public override void DidReceiveRemoteNotification( UIApplication application, NSDictionary userInfo, Action&lt;UIBackgroundFetchResult&gt; completionHandler )
    {
      ...
    }


   
    public void DidReceiveNotificationResponse( UNUserNotificationCenter center, UNNotificationResponse response, Action completionHandler )
    {
      ...
    }
</code></pre>

<p>您可能希望/需要覆盖或实现的其他方法(另请参阅上面 <code>class AppDelegate</code> 上声明的接口(interface));其中一些可能特定于 FCM:</p>

<pre><code>ApplicationReceivedRemoteMessage
ReceivedRemoteNotification
WillPresentNotification
PerformFetch (for background notifications)
HandleAction
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 如何为 iOS 版本 9 &#43; 10(可能还有 8)实现 Apple 推送通知?,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/41798124/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/41798124/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 如何为 iOS 版本 9 &#43; 10(可能还有 8)实现 Apple 推送通知?