реализовать TTThumbsViewController на UIViewController? - PullRequest
0 голосов
/ 22 сентября 2011

Я пытаюсь добавить TTThumbsViewController в качестве подпредставления UIViewController, но приложение падает Здесь вы видите код -

.h file-

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

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

.m File-

    - (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'

Пожалуйста, помогите. я совершенно запутался, где я не прав ...

1 Ответ

1 голос
/ 23 сентября 2011

Ваш контроллер представления должен иметь тип TTThumbsViewController, а не UIViewControler для начинающих. Проверьте приложение TTCatalog в папке примеров

...