草庐IT

swift - 检查一天的变化 - 时区调整

coder 2023-09-10 原文

我只是尝试创建一些代码(粘贴在下面)来检查一天的变化。然而,现在I'm reading有一个特殊的日期更改功能。

NSCalendarDayChangedNotification

显然它适用于 iOS8 及更高版本。但是人们一直在使用“你可以收听它”这句话……就好像使用这个功能就像调到一个广播电台一样。我查了一下,上次 WWDC 提供了一些相关代码的演示文稿:

Reacting to the Change of Day • You may want to run some code when the day changes NSCalendarDayChangedNotification • Example

noteCenter = [NSNotificationCenter defaultCenter];
observer = [noteCenter addObserverForName:NSCalendarDayChangedNotification
object:nil
queue:nil
usingBlock:^(NSNotification *note) {
// your code here
}];

我的问题

不过,我找到的 PDF 并没有说明其他内容。所以我的问题是这个功能是如何工作的? PDF 使它看起来真的就是这么简单,将代码粘贴进去,我就完成了。真的吗?它会根据时区进行调整吗?我是否必须启用它引用的这个通知中心?

我的代码(不确定是否可行):

    //Find out if it's a new day
    let lastDateUsed_NSDefault = NSUserDefaults.standardUserDefaults()
    if let endOf_LastDateUsed = lastDateUsed_NSDefault.objectForKey("lastDateUsed") as! NSDate! {
        print("Success! NSUserDefault key: 'lastDateUsed' returned \(endOf_LastDateUsed)")
        //Check if the day has changed

        let calendar = NSCalendar.currentCalendar()
        let startOfToday = calendar.startOfDayForDate(now)

        if endOf_LastDateUsed.compare(startOfToday) == NSComparisonResult.OrderedAscending {
            //endOf_LastDateUsed is greater than startOfToday.
            print("Do nothing! Last date used must have been today!")
        } else if endOf_LastDateUsed.compare(startOfToday) == NSComparisonResult.OrderedAscending {
            //Day has changed. Run alert.


            //Save "endOfToday" date value to NSDefault
            let endOfToday = startOfToday.dateByAddingTimeInterval(24 * 60 * 60)
            NSUserDefaults.standardUserDefaults().setObject(endOfToday, forKey:"lastDateUsed")
            print("Time stored in NSDefault: \(endOfToday)")
        }

    }
    else {
        print("Failure! NSUserDefault key: 'lasteDateUsed' returned nothing. No record.")
        //First time user - Set end of today
        let calendar = NSCalendar.currentCalendar()
        let startOfToday = calendar.startOfDayForDate(now)
        print("startOfToday: \(startOfToday)")
        let endOfToday = startOfToday.dateByAddingTimeInterval(24 * 60 * 60)
        //Store
        NSUserDefaults.standardUserDefaults().setObject(endOfToday, forKey:"lastDateUsed")

        print("Time stored in NSDefault: \(endOfToday)")
    }

最佳答案

documentation (诚​​然,这比我希望的要难一些)相当清楚:

Posted whenever the calendar day of the system changes, as determined by the system calendar, locale, and time zone.

所以是的,它应该适本地处理夏令时的变化,因为它知道时区。我不知道如何启用通知中心,但这应该很容易通过调整设备上的系统时钟或时区并查看会发生什么来进行测试。

(文档中没有清楚的是,如果通过手动干预更改日期,是否会触发此事件,例如通过以直接更改系统时间或时区的方式更改系统时间或时区日期。值得你尝试一下。)

关于swift - 检查一天的变化 - 时区调整,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32777118/

有关swift - 检查一天的变化 - 时区调整的更多相关文章

  1. ruby - 检查 "command"的输出应该包含 NilClass 的意外崩溃 - 2

    为了将Cucumber用于命令行脚本,我按照提供的说明安装了arubagem。它在我的Gemfile中,我可以验证是否安装了正确的版本并且我已经包含了require'aruba/cucumber'在'features/env.rb'中为了确保它能正常工作,我写了以下场景:@announceScenario:Testingcucumber/arubaGivenablankslateThentheoutputfrom"ls-la"shouldcontain"drw"假设事情应该失败。它确实失败了,但失败的原因是错误的:@announceScenario:Testingcucumber/ar

  2. ruby - 检查数组是否在增加 - 2

    这个问题在这里已经有了答案:Checktoseeifanarrayisalreadysorted?(8个答案)关闭9年前。我只是想知道是否有办法检查数组是否在增加?这是我的解决方案,但我正在寻找更漂亮的方法:n=-1@arr.flatten.each{|e|returnfalseife

  3. ruby - 检查方法参数的类型 - 2

    我不确定传递给方法的对象的类型是否正确。我可能会将一个字符串传递给一个只能处理整数的函数。某种运行时保证怎么样?我看不到比以下更好的选择:defsomeFixNumMangler(input)raise"wrongtype:integerrequired"unlessinput.class==FixNumother_stuffend有更好的选择吗? 最佳答案 使用Kernel#Integer在使用之前转换输入的方法。当无法以任何合理的方式将输入转换为整数时,它将引发ArgumentError。defmy_method(number)

  4. ruby - 检查字符串是否包含散列中的任何键并返回它包含的键的值 - 2

    我有一个包含多个键的散列和一个字符串,该字符串不包含散列中的任何键或包含一个键。h={"k1"=>"v1","k2"=>"v2","k3"=>"v3"}s="thisisanexamplestringthatmightoccurwithakeysomewhereinthestringk1(withspecialcharacterslike(^&*$#@!^&&*))"检查s是否包含h中的任何键的最佳方法是什么,如果包含,则返回它包含的键的值?例如,对于上面的h和s的例子,输出应该是v1。编辑:只有字符串是用户定义的。哈希将始终相同。 最佳答案

  5. ruby-on-rails - Ruby 检查日期时间是否为 iso8601 并保存 - 2

    我需要检查DateTime是否采用有效的ISO8601格式。喜欢:#iso8601?我检查了ruby​​是否有特定方法,但没有找到。目前我正在使用date.iso8601==date来检查这个。有什么好的方法吗?编辑解释我的环境,并改变问题的范围。因此,我的项目将使用jsapiFullCalendar,这就是我需要iso8601字符串格式的原因。我想知道更好或正确的方法是什么,以正确的格式将日期保存在数据库中,或者让ActiveRecord完成它们的工作并在我需要时间信息时对其进行操作。 最佳答案 我不太明白你的问题。我假设您想检查

  6. ruby - 检查日期是否在过去 7 天内 - 2

    我的日期格式如下:"%d-%m-%Y"(例如,今天的日期为07-09-2015),我想看看是不是在过去的七天内。谁能推荐一种方法? 最佳答案 你可以这样做:require"date"Date.today-7 关于ruby-检查日期是否在过去7天内,我们在StackOverflow上找到一个类似的问题: https://stackoverflow.com/questions/32438063/

  7. ruby - 检查是否通过 require 执行或导入了 Ruby 程序 - 2

    如何检查Ruby文件是否是通过“require”或“load”导入的,而不是简单地从命令行执行的?例如:foo.rb的内容:puts"Hello"bar.rb的内容require'foo'输出:$./foo.rbHello$./bar.rbHello基本上,我想调用bar.rb以不执行puts调用。 最佳答案 将foo.rb改为:if__FILE__==$0puts"Hello"end检查__FILE__-当前ruby​​文件的名称-与$0-正在运行的脚本的名称。 关于ruby-检查是否

  8. ruby-on-rails - 启用 Rack::Deflater 时 ETag 发生变化 - 2

    在启用Rack::Deflater来gzip我的响应主体时偶然发现了一些奇怪的东西。也许我遗漏了一些东西,但启用此功能后,响应被压缩,但是资源的ETag在每个请求上都会发生变化。这会强制应用程序每次都响应,而不是发送304。这在没有启用Rack::Deflater的情况下有效,我已经验证页面源没有改变。我正在运行一个使用thin作为Web服务器的Rails应用程序。Gemfile.lockhttps://gist.github.com/2510816有没有什么方法可以让我从Rack中间件获得更多的输出,这样我就可以看到发生了什么?提前致谢。 最佳答案

  9. css - 用 watir 检查标签类? - 2

    我有一个div,它根据表单是否正确提交而改变。我想知道是否可以检查类的特定元素?开始元素看起来像这样。如果输入不正确,添加错误类。 最佳答案 试试这个:browser.div(:id=>"myerrortest").class_name更多信息:http://watir.github.com/watir-webdriver/doc/Watir/HTMLElement.html#class_name-instance_method另一种选择是只查看具有您期望的类的div是否存在browser.div((:id=>"myerrortes

  10. ruby-on-rails - rspec - 如何检查方法是否存在? - 2

    我的模型有defself.empty_building//stuffend我怎样才能对这个现有的进行rspec?,已经尝试过:describe"empty_building"dosubject{Building.new}it{shouldrespond_to:empty_building}endbutgetting:Failure/Error:it{shouldrespond_to:empty_building}expected#torespondto:empty_building 最佳答案 你有一个类方法self.empty_bu

随机推荐