我正在从另一个类调用我的 TableViewController 类中的一个方法。
要调用显示 tableview 的方法,我这样做:
TableViewController *tableVC = [[TableViewController alloc]init];
[tableVC setTableViewContent];
然后在 TableViewController.h
@interface TableViewController : UITableViewController <UITableViewDelegate, UITableViewDataSource>
{
NSMutableArray *nameArray;
}
-(void)setTableViewContent;
@property (nonatomic, strong) IBOutlet UITableView *tableView;
@end
表视图控制器.m
@implementation TableViewController
@synthesize tableView;
- (void)viewDidLoad
{
nameArray = [[NSMutableArray alloc]init];
[super viewDidLoad];
}
-(void)setTableViewContent{
AppDelegate *appDelegate = (AppDelegate *)[[UIApplication sharedApplication] delegate];
for(int i=0;i< [appDelegate.businessArray count];i++)
{
NSDictionary *businessDict = [[appDelegate.businessArray objectAtIndex:i] valueForKey:@"location"];
nameArray = [appDelegate.businessArray valueForKey:@"name"];
}
NSLog(@"%@", nameArray);
NSLog(@"tableview: %@", tableView);
// here tableview returns null
[tableView reloadData];
}
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
// Return the number of sections.
return 1;
}
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
// Return the number of rows in the section.
return [nameArray count];
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
NSLog(@"updating tableview...");
static NSString *CellIdentifier = @"Cell";
UITableViewCell *cell =[tableView dequeueReusableCellWithIdentifier:CellIdentifier forIndexPath:indexPath];
// Configure the cell...
cell.textLabel.text = [nameArray objectAtIndex:indexPath.row];
return cell;
}
出于某种原因,当我尝试记录 tableview 时,它返回 null,因此 ReloadData 不起作用。代理和数据源在 IB 中正确连接,并且有一个 tableView 的引用出口。
知道这里发生了什么吗?提前致谢