0

TTThumbsViewControllerサブビューとしてadd を実装しようとしていますUIViewControllerが、アプリがクラッシュしています。ここにコードが表示されます-

.h ファイル -

#import <UIKit/UIKit.h>
#import <Three20/Three20.h>
#import <Three20UI/UIViewAdditions.h>
#import "MockPhotoSource.h"

@interface photos : UIViewController <NSXMLParserDelegate, TTThumbsViewControllerDelegate>
{
    TTThumbsViewController *photoSource;
...........
}

.m ファイル -

    - (void)viewDidLoad {

// parsing a feed
[self parseXMLFileAtURL:@"http://feed203.photobucket.com/albums/aa15/vikysaran/Worst%20Parents/feed.rss"];

    NSMutableArray *arr = [[NSMutableArray alloc]init];                         

    for (int i=0; i < [stories count];i++) {

        [arr addObject:[[[MockPhoto alloc] initWithURL:[[stories objectAtIndex:i] objectForKey:@"fullimageurl"] smallURL:[[stories objectAtIndex:i] objectForKey:@"thumburl"]
 size:CGSizeMake(960, 1280)] autorelease]];
    }
    photoSource = [[[MockPhotoSource alloc] initWithType:MockPhotoSourceNormal title:nil photos:[NSArray arrayWithArray:arr] photos2:nil]autorelease];
// till here the code is working fine if i am not using uiviewcontroller
        NSLog(@"mockphoto%@", arr);

        [self.view addSubview:photoSource.view];// adding to uiview
    }

ここにエラー表示があります-

-[MockPhotoSource view]: unrecognized selector sent to instance 0x6924ca0
2011-09-22 13:07:07.375 JesonTerry[1969:207] *** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[MockPhotoSource view]: unrecognized selector sent to instance 0x6924ca0'

誰か助けてください。私はどこが間違っているのか完全に混乱しています...

4

1 に答える 1

1

あなたのView Controllerはタイプである必要があり、初心者向けTTThumbsViewControllerではありませんUIViewControler..サンプルフォルダーのTTCatalogアプリを確認してください

于 2011-09-22T20:48:23.700 に答える