来自按日期更改的 URL 的 UIImage

发布于 2024-12-09 22:22:04 字数 257 浏览 1 评论 0原文

我的问题很简单,我想从 URL 加载 UIImage,但此 URL 按日期以编程方式更改。

示例 今天的网址是 http://www.abc.com/2011-10-13/alfa.jpg

明天的网址是 http://www.abc.com/2011-10- 14/alfa.jpg

唯一改变的是日期部分,我如何计算我的应用程序在每次启动时在当前日期加载“alfa.jpg”?

谢谢!

my question is simple, i want to load a UIImage from an URL, but this URL change programmatically by date.

Example Today the url is http://www.abc.com/2011-10-13/alfa.jpg

tomorrow is http://www.abc.com/2011-10-14/alfa.jpg

the only thing that change is the date part, how can i figure my app load that "alfa.jpg" at current date everytime i start it?

Thanks!

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

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

发布评论

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

评论(4

烟雨扶苏 2024-12-16 22:22:04

您应该使用 [NSDate date] 它根据设备时间返回当前日期和时间(假设您的设备时间与实际时间相差不超过一天)。然后你应该根据你的网址格式化日期。像这样的东西——

NSDateFormatter* formatter = [[NSDateFormatter alloc] init];
[formatter setDateFormat:@"yyyy-MM-dd"];
NSString* dateString = [formatter stringFromDate:[NSDate date]];
[formatter release];

You should use [NSDate date] which returns the current date and time according to the device time (assuming your device time doesn't differ from the actual by more than a day). Then you should format the date according to your url. Something like-

NSDateFormatter* formatter = [[NSDateFormatter alloc] init];
[formatter setDateFormat:@"yyyy-MM-dd"];
NSString* dateString = [formatter stringFromDate:[NSDate date]];
[formatter release];
零時差 2024-12-16 22:22:04

使用 NSDateFormatter 生成字符串中随时间变化的部分。

NSDateFormatter * dateFormatter = [[NSDateFormatter alloc] init];
[dateFormatter setDateFormat:@"yyyy-MM-dd"];

NSString * datePart = [dateFormatter stringFromDate:[NSDate date]];

NSString * theURLString = [NSString stringWithFormat:@"http://www.abc.com/%@/alfa.jpg", datePart];

您必须维护一种机制来检查当天的图像是否已下载,以避免再次下载。

Use an NSDateFormatter to generate the part of the string that varies with time.

NSDateFormatter * dateFormatter = [[NSDateFormatter alloc] init];
[dateFormatter setDateFormat:@"yyyy-MM-dd"];

NSString * datePart = [dateFormatter stringFromDate:[NSDate date]];

NSString * theURLString = [NSString stringWithFormat:@"http://www.abc.com/%@/alfa.jpg", datePart];

You will have to maintain a mechanism to check whether if the image for the day has been downloaded to avoid downloading it again.

牛↙奶布丁 2024-12-16 22:22:04

创建您正在使用 nstring 的 url 模板和 DateFormatter 对象...

NSDateFormatter *df   = [[[NSDateFormatter alloc] init] autorelease];
[df setDateFormat:@"yyyy-MM-dd"];
NSString *todayStr    = [df stringFromDate:[NSDate date]];

NSString *todayUrl    = [NSString stringWithFormat:@"http://www.abc.com/%@/alfa.jpg", todayStr];

todayUrl 包含今天的 url!

Create a template of the url you are using nstring and a DateFormatter object...

NSDateFormatter *df   = [[[NSDateFormatter alloc] init] autorelease];
[df setDateFormat:@"yyyy-MM-dd"];
NSString *todayStr    = [df stringFromDate:[NSDate date]];

NSString *todayUrl    = [NSString stringWithFormat:@"http://www.abc.com/%@/alfa.jpg", todayStr];

todayUrl has the url for today!

鸩远一方 2024-12-16 22:22:04

这是一个简单的任务,只需使用当前日期格式化 URL 字符串,

NSString *URLString = [[NSString alloc] initWithFormat:@"http://www.abc.com/%@/alfa.jpg", currentDate];

然后使用该字符串进行 URL 请求。

Its an easy task just format your URL string using current date like,

NSString *URLString = [[NSString alloc] initWithFormat:@"http://www.abc.com/%@/alfa.jpg", currentDate];

Then use this string for URL request.

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