菜鸟教程小白 发表于 2022-12-13 15:21:00

ios - 如何在 objective-c 中取消本地单一通知


                                            <p><p>你能帮我如何在 iOS 10 中取消本地通知</p>

<pre><code>UNUserNotificationCenter *center = ;
;
];
</code></pre>

<p><code>removePendingNotificationRequestsWithIdentifiers</code> 我看不懂</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>在创建本地通知时,您可以将标识符传递给每个通知。使用相同的标识符来移除本地通知。</p>

<p>创建本地通知的代码:-</p>

<pre><code>NSString *identifier = @&#34;Unique Identifier&#34;;
UNNotificationRequest *request =

[center addNotificationRequest:request withCompletionHandler:^(NSError * _Nullable error) {
if (error != nil) {
    NSLog(@&#34;Something went wrong: %@&#34;,error);
   }
}];
</code></pre>

<p>取消通知的代码:-</p>

<pre><code>UNUserNotificationCenter *center = ;
NSArray *array = ;
;
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 如何在 objective-c 中取消本地单一通知,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/43773383/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/43773383/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 如何在 objective-c 中取消本地单一通知