在 Xcode 中使用 Apple 脚本,在应用程序启动时检查系统日期以进行验证

发布于 2024-10-24 08:52:26 字数 166 浏览 2 评论 0原文

我正在使用 Xcode 和 applescript 库编写一个 mac 应用程序。我想添加一组代码,以便在程序启动时,它将与系统日期进行比较。如果日期在指定范围内,则继续。如果日期检查超出范围,则立即终止程序。

有人可以提供任何建议吗?谢谢你!

代码:3.2.5 OSX 10.6 雪豹

I am writing a mac application using Xcode with applescript base. I want to add in a set of code so upon program launch, it would compare with system date. If date within range specified, proceed. If date check is out of range then terminate program immediately.

Can anyone offer any suggestions? thank you!

Xcode: 3.2.5
OSX 10.6 Snow Leopard

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

樱桃奶球 2024-10-31 08:52:26

你的意思是这样的吗?

set range to 3 * days
set targetDate to (date "Saturday, March 19, 2011 12:00:00 AM")
set currDate to current date
if abs(targetDate - currDate) > range then
    display dialog "quit"
else
    display dialog "continue"
end if

on abs(n)
    if n < 0 then
        return -n
    else
        return n
    end if
end abs

Do you mean something like this?

set range to 3 * days
set targetDate to (date "Saturday, March 19, 2011 12:00:00 AM")
set currDate to current date
if abs(targetDate - currDate) > range then
    display dialog "quit"
else
    display dialog "continue"
end if

on abs(n)
    if n < 0 then
        return -n
    else
        return n
    end if
end abs
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文