0

ストーリーボード ベースのアプリがあり、MWPhotoBrowser を使用したいと考えています。cocoaPods を使用して MWPhotoBrowser をプロジェクトに追加しました。私のストーリーボードには、PhotoBrowserViewController というビュー コントローラーがあり、別のビュー コントローラーのボタンからプッシュしてアクセスしました。私の PhotoBrowerViewController では、追加した写真ではなく、設定したタイトルしか見ることができませんか? 誰でも私を助けることができますか?

PhotoBrowserViewController.h

#import <UIKit/UIKit.h>
#import "MWPhotoBrowser.h"
@interface PhotoBrowserViewController : UIViewController<MWPhotoBrowserDelegate>

@property (nonatomic, strong) NSMutableArray *photos;
@end

PhotoBrowserViewController.m

#import "PhotoBrowserViewController.h"

@interface PhotoBrowserViewController ()
@end

@implementation PhotoBrowserViewController

- (void)awakeFromNib
{
    self.title = @"MWPhotoBrowser";
    MWPhotoBrowser *browser = [[MWPhotoBrowser alloc] initWithDelegate:self];
    browser.displayActionButton = YES;
    [self.photos addObject:[MWPhoto photoWithURL:[NSURL URLWithString:@"http://www.ournorthstar.com/wp-content/uploads/2013/10/test1.jpg"]]];

}


- (NSUInteger)numberOfPhotosInPhotoBrowser:(MWPhotoBrowser *)photoBrowser {
    return _photos.count;
}

- (id <MWPhoto>)photoBrowser:(MWPhotoBrowser *)photoBrowser photoAtIndex:(NSUInteger)index {
    if (index < _photos.count)
        return [_photos objectAtIndex:index];
    return nil;
}

@end
4

1 に答える 1

0

まず、このクラスが以下に準拠しているかどうかを確認しますMWPhotoBrowserDelegate

次に、(id <MWPhoto>)photoBrowser:(MWPhotoBrowser *)photoBrowser photoAtIndex:(NSUInteger)indexメソッドから MWPhoto オブジェクトを返す必要があります。

それが問題だと思います

于 2015-02-13T06:36:21.207 に答える