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 = @"Unique Identifier";
UNNotificationRequest *request =
[center addNotificationRequest:request withCompletionHandler:^(NSError * _Nullable error) {
if (error != nil) {
NSLog(@"Something went wrong: %@",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]