菜鸟教程小白 发表于 2022-12-13 01:51:57

ios - 当应用程序在后台运行时显示 UIAlert?


                                            <p><pre><code>UIAlertView *alertView = [ initWithTitle:@&#34;open app&#34; message:@&#34; backgr...&#34; delegate:nil cancelButtonTitle:@&#34;OK&#34; otherButtonTitles:nil];

;
</code></pre>

<p>应用程序在后台运行时如何显示警报?</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>使用 <a href="http://developer.apple.com/library/ios/#documentation/iPhone/Reference/UILocalNotification_Class/Reference/Reference.html" rel="noreferrer noopener nofollow"><code>UILocalNotification</code></a>当您的应用在后台时。</p>

<pre><code>UILocalNotification *notification = [ init];
notification.alertBody = @&#34;Your message&#34;;
notification.alertAction = @&#34;Open app&#34;;
[ presentLocalNotificationNow:notification];
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 当应用程序在后台运行时显示 UIAlert?,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/15702730/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/15702730/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 当应用程序在后台运行时显示 UIAlert?