Методы делегата UITableView, не вызываемые для основного представления uiSplitView - PullRequest
1 голос
/ 22 июля 2011

У меня есть вид с кнопки.Когда я нажимаю кнопку, Uisplitview должен показать.Проблема в том, что с табличным представлением (слева от splitview = главное представление).Подробный вид (справа) отображается правильно.Левый - пустой, потому что cellForRowAtIndexPath не вызывается.Мой .h файл расширяет UISplitViewController, и в view.idLoad файла .m я делаю это:

Left *l = [[Left alloc] initWithNibName:@"Left" bundle:nil];
Right *d = [[Right alloc] initWithNibName:@"Right" bundle:nil];
// Update the split view controller's view controllers array.
NSArray *viewControllers = [[NSArray alloc] initWithObjects:l, d, nil];
self.viewControllers = viewControllers;
[viewControllers release];

My left.h:

@interface Left : UIViewController  <UITableViewDataSource, UITableViewDelegate> {

NSMutableArray *tableData;
UITableView *table;
}

@property (nonatomic, retain) NSMutableArray *tableData;
@property (nonatomic, retain) IBOutlet UITableView *table;

My left.m:

    #import "Left.h"


   @implementation Left

   @synthesize tableData,table;

    - (id)initWithStyle:(UITableViewStyle)style
  {
self = [super initWithStyle:style];
if (self) {
    // Custom initialization
}
return self;
}

- (void)dealloc
{
[super dealloc];
}

- (void)didReceiveMemoryWarning
{
// Releases the view if it doesn't have a superview.
[super didReceiveMemoryWarning];

// Release any cached data, images, etc that aren't in use.
 }

#pragma mark - View lifecycle

 - (void)viewDidLoad
 {

[super viewDidLoad];
table = [[UITableView alloc] initWithFrame:[[UIScreen mainScreen] applicationFrame] style:UITableViewStylePlain]; 
table.delegate = self; 
table.dataSource = self; 

table.autoresizesSubviews = YES; 
tableData=[[NSMutableArray alloc] initWithObjects:@"bazinga",@"buzz", nil];

//NSLog(@"velikost : %d", [tableData count]);
[self.view addSubview:table];
}

 - (void)viewDidUnload
{
[super viewDidUnload];
// Release any retained subviews of the main view.
// e.g. self.myOutlet = nil;
}


- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
  {

// Return the number of sections.
return 0;
}

 - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
 {

// Return the number of rows in the section.
NSLog(@"size: %d", [tableData count]);
return [tableData count];
  }

 - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:  (NSIndexPath *)indexPath
   {
   static NSString *CellIdentifier = @"Cell";

UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
    cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier] autorelease];
}

// Configure the cell...
cell.textLabel.text=[tableData objectAtIndex:indexPath.row];

return cell;
 }


   }

  @end

Как мне заполнить таблицу моего основного представления данными?

1 Ответ

0 голосов
/ 22 июля 2011

вам нужно

заменить это

    table = [[UITableView alloc] initWithFrame:[[UIScreen mainScreen] applicationFrame] style:UITableViewStylePlain]; 

на

   self.table = [[UITableView alloc] initWithFrame:[[UIScreen mainScreen] applicationFrame] style:UITableViewStylePlain]; 

, потому что я использовал для вызова с самим собой, вы синтезировали таблицу.

так что нам должно понравиться это

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...