从一个文件夹中将图像加载到ikimagebrowser中?

时间:2013-01-14 14:43:32

标签: objective-c macos cocoa ikimagebrowserview imagekit

我是cocoa的新手,我有一个IKImageBrowserView,这就是我将图像加载到它的方式:

- (IBAction)loadImages:(id)sender
{
NSMutableArray *urls = [[NSMutableArray alloc]init];
int i = 1;
for (i=1; i<55; i++) {
    NSString *photoNumber = [NSString stringWithFormat:@"%i", i];
    NSMutableString *urlString = [[NSMutableString alloc] initWithString:@"Australia"];
    [urlString appendString:photoNumber];
    NSURL* url = [[NSBundle mainBundle] URLForImageResource:urlString];
    [urls addObject:url];
}
[self addImagesWithPaths:urls];
}

    - (void)addAnImageWithPath:(NSString *)path
{
    myImageObject *p;

/* add a path to our temporary array */
p = [[myImageObject alloc] init];
[p setPath:path];
[_importedImages addObject:p];
}

- (void)addImagesWithPath:(NSString *)path recursive:(BOOL)recursive
{
NSInteger i, n;
BOOL dir;

[[NSFileManager defaultManager] fileExistsAtPath:path isDirectory:&dir];

if (dir)
{
    NSArray *content = [[NSFileManager defaultManager] contentsOfDirectoryAtPath:path error:nil];

    n = [content count];

    // parse the directory content
    for (i=0; i<n; i++)
    {
        if (recursive)
            [self addImagesWithPath:[path stringByAppendingPathComponent:[content objectAtIndex:i]] recursive:YES];
        else
            [self addAnImageWithPath:[path stringByAppendingPathComponent:[content objectAtIndex:i]]];
    }
}
else
{
    [self addAnImageWithPath:path];
}
}

/* performed in an independant thread, parse all paths in "paths" and add these paths in our    temporary array */
- (void)addImagesWithPaths:(NSArray *)urls
{
    NSInteger i, n;

n = [urls count];
for ( i= 0; i < n; i++)
{
    NSURL *url = [urls objectAtIndex:i];
    [self addImagesWithPath:[url path] recursive:NO];
}

/* update the datasource in the main thread */
[self performSelectorOnMainThread:@selector(updateDatasource) withObject:nil waitUntilDone:YES];
}

现在我的图像按名称加载 - @“澳大利亚”。这有点不方便,因为您的图像需要具有相同的名称和数字。如何从已导入xcode的文件夹中加载具有不同名称的图像?

所以目前我正按名称加载图片来澳大利亚1,澳大利亚2,澳大利亚3,澳大利亚4 ......等等。 如何从捆绑文件夹加载图像?

1 个答案:

答案 0 :(得分:1)

您的数据源需要将项目返回到符合IKImageBrowserItem协议的图像浏览器视图。你的myImageObject类是一个很好的开始。

在该协议中,需要三种方法:

首先,我只使用你已经为每个myImageObject提供的路径。您可以将其用作标识符字符串和图像表示。

根据您在此应用程序中执行的其他操作,您可能会发现以后因内存和/或速度原因自行加载每个映像都很有用。如果在分析之后,您确实得出了这个结论,您可以自己将图像作为NSImage或CGImage加载,适当地更改您的表示类型,并将图像作为表示返回。

作为数据来源,您将在_importedImages数组中返回the number of items,并在被要求the item at an index时,通过objectAtIndex:返回该项目。

更多信息: