这就是我想做的。每天在某个时间(比如说早上6点),应用程序会(在后台)运行一个脚本。就我而言,脚本是:
NSURL *url = [NSURL URLWithString:@"www.exampledocument.com/example.txt"];
NSString *content = [NSString stringWithContentsOfURL:url encoding:NSStringEncodingConversionAllowLossy error:nil];
然后使用Local Notification
将其发送到用户的设备。是否可以在后台运行该时间和脚本?我真的很感激我能得到的任何帮助。谢谢!