Мой класс выглядит так:
- (id)init
{
NSLog(@"lalallalalala");
if (self = [super init]) {
self.title = @"lalal";
UIImage* image = [UIImage imageNamed:@"tab.png"];
self.tabBarItem = [[[UITabBarItem alloc] initWithTitle:self.title image:image tag:0] autorelease];
self.variableHeightRows = YES;
id<TTTableViewDataSource> ds = [MainPageDataSource dataSourceWithItems:nil];
ds.model = CreateTabModelWithCurrentSettings();
self.dataSource = ds;
}
return self;
}
- (void)loadView
{
// Create the tableview.
NSLog(@"in MainPageController");
//self.view = [[[UIView alloc] initWithFrame:TTApplicationFrame()] autorelease];
self.view =[[UIView alloc] init];
self.tableView = [[[UITableView alloc] initWithFrame:TTApplicationFrame() style:UITableViewStylePlain] autorelease];
self.tableView.rowHeight = 80.f;
self.tableView.autoresizingMask = UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight;
[self.view addSubview:self.tableView];
}
- (id<UITableViewDelegate>)createDelegate {
return [[[TTTableViewDragRefreshDelegate alloc] initWithController:self] autorelease];
}
CreateDelegate, похоже, не работает, перетаскивание и обновление не отображаются.Я не знаю, что не так с моим кодом.
@ aporat контроллер представления расширяет TTTableViewController, и мой код изменился на:
- (id)init
{
NSLog(@"lalallalalala");
if (self = [super init]) {
self.title = @"app";
UIImage* image = [UIImage imageNamed:@"tab.png"];
self.tabBarItem = [[[UITabBarItem alloc] initWithTitle:self.title image:image tag:0] autorelease];
self.variableHeightRows = YES;
//id<TTTableViewDataSource> ds = [MainPageDataSource dataSourceWithItems:nil];
// ds.model = CreateTabModelWithCurrentSettings();
// self.dataSource = ds;
//self.dataSource = [[[MainPageDataSource alloc] init] autorelease];
}
return self;
}
- (void)createModel {
NSLog(@"in createModel");
self.dataSource = [[[MainPageDataSource alloc] init] autorelease];
}
//- (void)loadView
//{
// // Create the tableview.
//
// NSLog(@"in MainPageController");
//
// self.view = [[[UIView alloc] initWithFrame:TTApplicationFrame()] autorelease];
// //self.view =[[UIView alloc] init];
// self.tableView = [[[UITableView alloc] initWithFrame:TTApplicationFrame() style:UITableViewStylePlain] autorelease];
// self.toolbarItems = [NSArray arrayWithObjects:
// [TTButton buttonWithStyle:@"toolbarButton:" title:@"Toolbar Button"],
// [TTButton buttonWithStyle:@"toolbarRoundButton:" title:@"Round Button"],
// nil];
//
// self.tableView.rowHeight = 80.f;
// self.tableView.autoresizingMask = UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight;
// [self.view addSubview:self.tableView];
//
//
//}
//- (void)viewDidLoad {
// [super viewDidLoad];
//
// self.navigationController.navigationBar.alpha = 0;
//}
- (id<UITableViewDelegate>)createDelegate {
return [[[TTTableViewDragRefreshDelegate alloc] initWithController:self] autorelease];
}
По-прежнему не отображается drag & fresh