Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

UITableView within a UIViewController

How can I use a uitableview inside of a uiviewcontroller? Below is an example of what I'm trying to do (except this is just the UITableview in my Storyboard):

UITableView inside a UIViewController

I've figured out that I need to add the delegate and data source to my header:

//MyViewController.h
@interface MyViewController : UIViewController <UITableViewDelegate, UITableViewDataSource>

In my Implementation file, I've added the required methods:

//MyViewController.m

- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {
    // Return the number of sections.
    return 1;
}

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
    return;
}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
    NSLog(@"cellForRowAtIndexPath");

    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"FileCell"];

    NSLog(@"cellForRowAtIndexPath");
    NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
    NSString *documentsDirectory = [paths objectAtIndex:0];
    NSArray *fileListAct = [[NSFileManager defaultManager] contentsOfDirectoryAtPath:documentsDirectory error:nil];

    cell.textLabel.text = [NSString stringWithFormat:@"%@",[fileListAct objectAtIndex:indexPath.row]];

    return cell;
}

The delegate, datasource, and UITableView are all hooked up in my Storyboard:

UITableView Delegate and DataSource in Interface Builder Connections Outlet

I can't get the TableView to load the content that I tell it to. It always comes up blank. Why won't the TableView fill with the content I tell it to in the cellForRowAtIndexPath method? What am I missing here?

like image 370
Sam Spencer Avatar asked Feb 02 '23 05:02

Sam Spencer


2 Answers

You do have to link the dataSource and delegate outlets from the tableview in storyboard to the view controller. This is not optional. This is why your table is blank, it is never calling your view controller's table view methods. (You can prove this by setting breakpoints on them and seeing that they never get triggered.) What sort of build errors are you getting?

like image 60
jsd Avatar answered Feb 07 '23 09:02

jsd


You are not returning any valid value. See the return; without any numeric value to return?

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
  return; // it should be return 15; or return self.datasource.count;
  NSLog(@"numberOfRowsInSection");
}
like image 36
Webdevotion Avatar answered Feb 07 '23 10:02

Webdevotion