0

我正在尝试将一组图像从 Web 服务加载到 aUICollectionViewMKNetworkKit用于处理网络操作。

这有点奇怪,因为它在一种情况下有效,而在另一种情况下无效。请多多包涵,这篇文章有点长。

我有一个简单的故事板应用程序,它的主视图UIViewControllerUICollectionView嵌入的(由于 UI 更改而无法使用UICollectionViewController,我稍后会做)。

我创建了一个类,它是MKNetworkEngine处理从 Web 服务检索图像的方法的子类。

图像引擎.h

#import "MKNetworkEngine.h"

@interface ImageEngine : MKNetworkEngine

typedef void (^ImagesResponseBlock)(NSMutableArray *imageURLs);

- (void)allImages:(ImagesResponseBlock)imageURLBlock errorHandler:(MKNKErrorBlock)errorBlock;

@end

图像引擎.m

#import "ImageEngine.h"

@implementation ImageEngine

- (void)allImages:(ImagesResponseBlock)imageURLBlock errorHandler:(MKNKErrorBlock)errorBlock
{
    MKNetworkOperation *op = [self operationWithPath:@"All_Images.php"];

    [op addCompletionHandler:^(MKNetworkOperation *completedOperation) {
        [completedOperation responseJSONWithCompletionHandler:^(id jsonObject) {
            imageURLBlock(jsonObject[@"Images"]);
        }];
    } errorHandler:^(MKNetworkOperation *completedOperation, NSError *error) {
        errorBlock(error);
    }];
    [self enqueueOperation:op];
}

- (NSString *)cacheDirectoryName
{
    NSArray *paths = NSSearchPathForDirectoriesInDomains(NSCachesDirectory, NSUserDomainMask, YES);
    NSString *documentsDirectory = paths[0];
    NSString *cacheDirectoryName = [documentsDirectory stringByAppendingPathComponent:@"SomeImages"];

    return cacheDirectoryName;
}

@end

在带有集合视图的视图控制器类中,

#import "AppDelegate.h"
#import "GridViewController.h"
#import "ImageCell.h"

@interface GridViewController () <UICollectionViewDelegate, UICollectionViewDataSource>

@property (strong, nonatomic) IBOutlet UICollectionView *collectionView;
@property (strong, nonatomic) NSMutableArray *images;
@property (strong, nonatomic) NSString *selectedImageUrl;

@end

@implementation GridViewController


- (void)viewDidLoad
{
    [super viewDidLoad];

    [ApplicationDelegate.imageEngine allImages:^(NSMutableArray *images) {
        self.images = images;
        [self.collectionView reloadData];
    } errorHandler:^(NSError *error) {
        NSLog(@"MKNetwork Error: %@", error.localizedDescription);
    }];
}

#pragma mark - UICollectionViewDataSource
- (NSInteger)collectionView:(UICollectionView *)collectionView numberOfItemsInSection:(NSInteger)section
{
    return self.images.count;
}

- (UICollectionViewCell *)collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)indexPath
{
    static NSString *CellIdentifier = @"Cell";
    ImageCell *cell = [collectionView dequeueReusableCellWithReuseIdentifier:CellIdentifier forIndexPath:indexPath];

    NSDictionary *thisImage = self.images[indexPath.row];
    self.selectedImageUrl = [NSString stringWithFormat:@"%@%@", @"http://toonmoodz.osmium.lk/", thisImage[@"image"]];
    [cell.imageView setImageFromURL:[NSURL URLWithString:self.selectedImageUrl]];

    return cell;
}

@end

这工作得很好。图像按预期加载。

然后我使用MBPullDownController对应用程序进行了小的 UI 升级。它只是在集合视图下添加了一个表格视图。网络代码没有变化。只是MBPullDownController在主视图控制器中嵌入集合视图和表格视图的新子类。

但是当我这样做时,图像根本不会加载。我在 ImageEngine 类的方法中放置了一个断点,以查看它们是否被触发,但它从来没有发生过。(奇怪的是这段代码今天早上实际上运行良好。现在它没有,我完全不知道为什么)。它也不会抛出任何错误或警告。

我已经上传了两个项目来演示这个问题,以便其他人更容易理解。如果有人可以帮助我,我将不胜感激。在过去的几个小时里,我一直在为此拔头发。

正常工作的版本的来源

是有问题的项目的来源。(当你运行它时,它会显示一个空白的白色视图。它看起来像一个普通视图,但它是集合视图。我加载了一组本地图像以查看它是否正常工作

谢谢你。

4

1 回答 1

1

GridViewController当我在方法中设置断点时viewDidLoad,在控制台中执行后po [[UIApplication sharedApplication] valueForKeyPath:@"delegate.imageEngine"],我看到该imageEngine属性等于 nil。

看起来application:didFinishLaunchingWithOptions是在 in 之后执行viewDidLoadGridViewController

我从您的中删除了这两行application:didFinishLaunchingWithOptions

self.imageEngine = [[ImageEngine alloc] initWithHostName:@"toonmoodz.osmium.lk"];
[self.imageEngine useCache];

然后我添加了 imageEngine 惰性加载器AppDelegate及其工作http://cl.ly/image/1S172D2e050J

- (ImageEngine*) imageEngine {
    if (_imageEngine == nil) {
        _imageEngine = [[ImageEngine alloc] initWithHostName:@"toonmoodz.osmium.lk"];
        [_imageEngine useCache];
    }
    return _imageEngine;
}
于 2014-01-11T23:20:29.813 回答