菜鸟教程小白 发表于 2022-12-13 11:04:05

iphone - iOS 每天在特定时间触发本地通知


                                            <p><p>我试图在每天 12:01 AM 触发本地通知,但我不知道为什么我的代码不起作用。你能帮我找出问题吗?</p>

<pre><code>local = [init];

NSCalendar *calendar = [initWithCalendarIdentifier:NSPersianCalendar];
NSDateComponents *dateComps = [ init];

//edited:
; //2012
; //1
;    //29

local.repeatInterval = 5;

;
;
;


local.fireDate = ;
local.alertBody = @&#34;HELLO&#34;;
local.alertAction = @&#34;View&#34;;
local.applicationIconBadgeNumber = 1;
[scheduleLocalNotification:local];
</code></pre></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>您没有设置通知的 <code>repeatInterval</code> 属性,并且您的日期组件缺少月、年和日。默认值为 0,因此您的 <code>fireDate</code> 已回到过去。</p>

<p>另外,您可能希望使用 <code>NSGregorianCalendar</code> 而不是 <code>NSPersianCalendar</code>。</p></p>
                                   
                                                <p style="font-size: 20px;">关于iphone - iOS 每天在特定时间触发本地通知,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/9045470/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/9045470/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: iphone - iOS 每天在特定时间触发本地通知