Populating TableView Via Button.
Populating TableView Via Button.
- Subject: Populating TableView Via Button.
- From: Philip Juel Borges <email@hidden>
- Date: Fri, 18 Sep 2009 15:34:50 +0200
Hi!
Does anyone know how you'd populate a tableview when clicking a
button? I tried this:
AppController.h:
- (void)populateTableView:(id)sender;
AppController.m:
-(void)populateTableView:(id)sender {
[super init];
sourceArray = [NSArray arrayWithObjects:
[NSDictionary dictionaryWithObjectsAndKeys:
@"test 1", @"title",
[NSURL fileURLWithPath:@"/Library/1.html"], @"url", nil],
[NSDictionary dictionaryWithObjectsAndKeys:
@"test 2", @"title",
[NSURL fileURLWithPath:@"/Library/2.html"], @"url", nil],
[NSDictionary dictionaryWithObjectsAndKeys:
@"test 3", @"title",
[NSURL fileURLWithPath:@"/Library/3.html"], @"url", nil],
[NSDictionary dictionaryWithObjectsAndKeys:
@"test 4", @"title",
[NSURL fileURLWithPath:@"/Library/4.html"], @"url", nil],
nil];
return self;
}
This doesn't work. If I replace the void function in the class .m file
with (id) init, everything works fine. But then it populates the
tableview on launch and I'd like to populate the tableView only when I
click a button.
--Philip
_______________________________________________
Cocoa-dev mailing list (email@hidden)
Please do not post admin requests or moderator comments to the list.
Contact the moderators at cocoa-dev-admins(at)lists.apple.com
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden