如何在基于故事板的应用程序中使用MWPhotoBrowser?

时间:2014-12-20 00:18:27

标签: ios objective-c storyboard mwphotobrowser

我有一个基于故事板的应用程序,我想使用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

1 个答案:

答案 0 :(得分:0)

首先,检查您是否已将此课程符合MWPhotoBrowserDelegate

其次,您需要从(id <MWPhoto>)photoBrowser:(MWPhotoBrowser *)photoBrowser photoAtIndex:(NSUInteger)index方法

返回MWPhoto对象

我认为这就是问题