繁体   English   中英

uiSplitView 的主视图未调用 UITableView 委托方法

[英]UITableView delegate methods not called for uiSplitView's master view

我有一个带按钮的视图。 当我按下按钮时,应该显示 uisplitview。 问题在于tableview(拆分视图的左=主视图)。 详细视图(右)正确显示。 左边是空的,因为 cellForRowAtIndexPath 没有被调用。 My.h 文件扩展了 UISplitViewController,在 .m 文件的 viewDidLoad 中我这样做:

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];

我的left.h:

@interface Left : UIViewController  <UITableViewDataSource, UITableViewDelegate> {

NSMutableArray *tableData;
UITableView *table;
}

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

我的左边.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

如何用数据填充主视图的表?

你必须

替换这个

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

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

因为我曾经用 self 打电话,所以你已经合成了这张桌子。

所以我们必须喜欢这个

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM