vote up -1 vote down star

For some reason, [self.tableView reloadData]; just wont work. In my .h file I have:

@interface SearchOptions : UIViewController <UINavigationBarDelegate, UITableViewDelegate, UITableViewDataSource> 
{
    IBOutlet UITableView *myTableView;
     .....
}

I've tried:

[self.tableView reloadData];

and

[self.myTableView reloadData];

Any ideas what might be happening?

flag

4 Answers

vote up 1 vote down check

Check that you’ve correctly bound your outlet in Interface Builder (check myTableView is not nil). If that’s not it, are you getting the initial data in your table view? If not, then it probably means you haven’t set your SearchOptions instance as the data source for your table—check this in Interface Builder and stick some break points on the data source methods.

link|flag
I've set: myTableView.delegate = self; and myTableView.dataSource = self; ...nothing. The outlets and class are set in IB as well. The table displays just fine in a grouped style (set in IB). It's always the little unexpected problems that get you! – Jonah Nov 7 at 4:28
Should I be allocating or initializing myTableView somehow? – Jonah Nov 7 at 4:33
If I add myTableView.dataSource = nil; the table is blank. So I guess it isn't nil. – Jonah Nov 7 at 4:48
vote up 2 vote down

Are you sure it's non-nil? That is, that your outlet is properly connected?

Is the property tableView synthesized to the ivar myTableView? (You don't include that code in your question.)

link|flag
How would you synthesize the tableView property to the ivar myTableView? Thanks for the help! – Jonah Nov 7 at 1:38
Do you mean: @property (nonatomic, retain) UITableView *myTableView; – Jonah Nov 7 at 1:50
In @Implementation file (.m) @synthesize myTableView; – Jordan Nov 7 at 3:58
You don't need to synthesize it, so that won’t be the problem. – Chris Suter Nov 7 at 4:01
Yes, it was synthesized. – Jonah Nov 7 at 4:13
vote up 1 vote down

Your outlet isn't connected in IB.

link|flag
Actually, it is connected. But it's acting like it isn't. – Jonah Nov 7 at 4:05
vote up 0 vote down

I solved it! The problem was that because of other reasons, I wasn't able to reuse my cells and this was my code:

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {

NSString *kCustomCellID = [NSString stringWithFormat:@"MyCellID%d", indexPath];
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:kCustomCellID];
if (cell == nil) 
{
    cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:kCustomCellID] autorelease];
    cell.selectionStyle = UITableViewCellSelectionStyleBlue;

	if (selectOrDeselectInteger == 1) {
		cell.accessoryType = UITableViewCellAccessoryCheckmark;	
	}
	if (selectOrDeselectInteger == 2) {
		cell.accessoryType = UITableViewCellAccessoryNone;
	}
}

I just had to add this afterwards:

    if (cell != nil) 
{
	if (selectOrDeselectInteger == 1) {
		cell.accessoryType = UITableViewCellAccessoryCheckmark;	
	}
	if (selectOrDeselectInteger == 2) {
		cell.accessoryType = UITableViewCellAccessoryNone;			
	}
}

Thanks everyone for the help. Sorry this code wasn't in the question.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.