IKImageBrowser 以相反的顺序加载文件?

发布于 2024-10-18 06:47:08 字数 241 浏览 1 评论 0原文

我有一个 IKImageBrowser,它从应用程序内的资源目录加载图像。由于某种原因,它加载文件的顺序是相反的,例如我有图像 1-74,但它们加载的是 74-1,有什么想法吗?

项目基于 IKImageKit 演示

I have an IKImageBrowser that loads images from the resources directory located inside the app. For some reason, the order it loads the file is in reverse, for example I have images 1-74, but they get loaded 74-1, any ideas?

Project is based off of the IKImageKit Demo.

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

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

发布评论

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

评论(1

晨曦÷微暖 2024-10-25 06:47:08

简单而“丑陋”的解决方案:

// File: ControllerBrowsing.m:
// Function: - (void) addImagesFromDirectory:(NSString *) path

// Find:
for(i=0; i<n; i++)

// Replace with:
for(i=n-1; i>=0; i--)

好的解决方案(众多可能性之一):

  1. 创建一个新的 NSMutableArray。
  2. 循环遍历包含文件的 NSArray。
  3. 将路径添加到 NSMutableArray。
  4. 按照您喜欢的方式对 NSMutableArray 进行排序。
  5. 循环 NSMutableArray 并添加项目。

Simple and 'ugly' solution:

// File: ControllerBrowsing.m:
// Function: - (void) addImagesFromDirectory:(NSString *) path

// Find:
for(i=0; i<n; i++)

// Replace with:
for(i=n-1; i>=0; i--)

Good solution (one of the many possibilities):

  1. Create a new NSMutableArray.
  2. Loop through the NSArray that contains the files.
  3. Add the paths to the NSMutableArray.
  4. Sort the NSMutableArray the way you like.
  5. Loop trough the NSMutableArray and add the items.
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文