ストーリーボード ベースのアプリがあり、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