0

フォトブラウザを使ったアプリを作ろうと思っているのですが MWPhotoBrowser を使うことにしました。

これはコードですが、うまくいかないようです:

ViewController.h

#import <UIKit/UIKit.h>
#import "MWPhotoBrowser.h"

@interface ViewController : UIViewController<MWPhotoBrowserDelegate> {
    NSArray *_photos;
    UISegmentedControl *_segmentedControl;
}
@property (nonatomic, retain) NSArray *photos;
- (IBAction)billede:(id)sender;

@end

ViewController.m

#import "ViewController.h"

@interface ViewController ()

@end

@implementation ViewController
@synthesize photos = _photos;


- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil
{
    self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];
    if (self) {
        UIBarButtonItem *item = [[[UIBarButtonItem alloc] initWithCustomView:_segmentedControl] autorelease];
        self.navigationItem.rightBarButtonItem = item;
        self.navigationItem.backBarButtonItem = [[[UIBarButtonItem alloc] initWithTitle:@"Back" style:UIBarButtonItemStyleBordered target:nil action:nil] autorelease];
    }
    return self;
}


- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
    return (interfaceOrientation == UIInterfaceOrientationPortrait);
}
- (IBAction)billede:(id)sender {

    //show your photo whit url
    NSMutableArray *photos = [[NSMutableArray alloc] init];
    MWPhoto *photo;
    {
    photo = [MWPhoto photoWithFilePath:[[NSBundle mainBundle] pathForResource:@"photo2l" ofType:@"jpg"]];
    photo.caption = @"The London Eye is a giant Ferris wheel situated on the banks of the River Thames, in London, England.";
    [photos addObject:photo];
    }

    self.photos = photos;

    // Create browser
    MWPhotoBrowser *browser = [[MWPhotoBrowser alloc] initWithDelegate:self];
    browser.displayActionButton = YES;

    //browser.wantsFullScreenLayout = NO;
    //[browser setInitialPageIndex:2];

    // Show
    if (_segmentedControl.selectedSegmentIndex == 0) {
        // Push
        [self.navigationController pushViewController:browser animated:YES];
    } else {
        // Modal
        UINavigationController *nc = [[UINavigationController alloc] initWithRootViewController:browser];
        nc.modalTransitionStyle = UIModalTransitionStyleCrossDissolve;
        [self presentModalViewController:nc animated:YES];
        [nc release];
    }



}


#pragma mark - MWPhotoBrowserDelegate

- (NSUInteger)numberOfPhotosInPhotoBrowser:(MWPhotoBrowser *)photoBrowser {

    return _photos.count;

}



- (MWPhoto *)photoBrowser:(MWPhotoBrowser *)photoBrowser photoAtIndex:   (NSUInteger)index {

    if (index < _photos.count)

        return [_photos objectAtIndex:index];

    return nil;

}

@end

私はARCとwothout ARCの両方を試しました

ARC がないと、3 つのエラーが発生します。

アーキテクチャ i386 の未定義シンボル: "_OBJC_CLASS_$_MWPhoto"、参照元: ViewController.o の objc-class-ref "_OBJC_CLASS_$_MWPhotoBrowser"、参照元: ViewController.o ld の objc-class-ref: シンボルが見つかりませんアーキテクチャ i386 の clang: エラー:リンカー コマンドが終了コード 1 で失敗しました (呼び出しを確認するには -v を使用してください)

ARCを使用すると、2つのエラーが発生します

問題1 http://i.imgur.com/pT7qW.png

問題2 http://i.imgur.com/E0X1m.png

ここでは行っていませんが、すべてボタンにラップして、それをクリックして MWPhotoBrowser 内に画像を表示できるようにしたいと考えています。

編集

コードをアップグレードし、ファイルから ARC を削除して、ターゲットを正しく設定しました。これでコンパイルできますが、ボタンをクリックしようとするたびに、「billede」というメッセージが表示されます。

    2012-11-26 23:32:10.955 MWPhotoBrowserTest[10405:c07] -[ViewController galleri:]: unrecognized selector sent to instance 0x947fb20
2012-11-26 23:32:10.957 MWPhotoBrowserTest[10405:c07] *** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[ViewController galleri:]: unrecognized selector sent to instance 0x947fb20'
*** First throw call stack:
(0x1d34012 0x14e9e7e 0x1dbf4bd 0x1d23bbc 0x1d2394e 0x14fd705 0x434920 0x4348b8 0x4f5671 0x4f5bcf 0x4f4d38 0x46433f 0x464552 0x4423aa 0x433cf8 0x1f6ddf9 0x1f6dad0 0x1ca9bf5 0x1ca9962 0x1cdabb6 0x1cd9f44 0x1cd9e1b 0x1f6c7e3 0x1f6c668 0x43165c 0x1e2d 0x1d55)
libc++abi.dylib: terminate called throwing an exception
(lldb) 
4

2 に答える 2

1

添付 1: オブジェクトを NSArray に追加することはできません。代わりに NSMutableArray を使用してください。

添付 2: UIView にはメソッド「reloadData」はありませんが、たとえば UITableView にはあります。

于 2012-11-25T23:51:52.540 に答える
0

実際にこれで解決しました。4日間格闘し、やっと手に入れました。https://github.com/mwaterfall/MWPhotoBrowser#method-1-static-libraryを読んでようやく理解できましたが、ユーザーヘッダーの検索パスに問題がありました。私はついにそれを手に入れ、MWPhotoBrowserフォルダーを私のMWPhotoBrowser「プロジェクト」フォルダーにインポートし、ユーザーヘッダー検索パスを「../」の代わりに「..」に置きまし

これが私と同じ問題に直面している可能性のある人に役立つことを願っています!

ところで、助けてくれてありがとう!:-)

于 2012-11-29T21:46:32.470 に答える