Edit cell after adding to TableView
Edit cell after adding to TableView
- Subject: Edit cell after adding to TableView
- From: Austin Sarner <email@hidden>
- Date: Wed, 12 Jan 2005 20:46:05 -0500
I'm using bindings to handle editing some data with a table view. What I've done is linked the array controller to my tableview controller so I can edit the created cell immediately after adding it. This methods works fine when I try to add it but the cell is not automatically edited.
I am currently using this method, the adding part of which works fine. Any help would be greatly appreciated.
- (IBAction) addFolder:(id)sender
{
[folderArray add:sender];
[folderList editColumn:[folderList selectedColumn] row:[folderList selectedRow] withEvent:nil select:YES];
} _______________________________________________
Do not post admin requests to the list. They will be ignored.
Cocoa-dev mailing list (email@hidden)
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden