“
[app.tableViewCell delete];
or if you know the text in the cell you can do:
[[[app.tableView.label text:@"Some Text in a Cell"] parent].tableViewCell
delete];
“
In Symbiote I can successfully flash the following selectors
tableViewCell label text:’my text’
tableView label text:’my text' parent tableViewCell
but sending the delete command to either of those selectors returns null.
I too am stumped.
James
Thanks, Derek.
Here’s some more followup:
The table I’m working with has a list of items that can be selected. Selecting an item changes some data elsewhere and dismisses the popup that contains the table. When I reopen the popup the last item that was selected is highlighted. If I try to delete the highlighted item I get the EOF error.
Symbiote says that the highlighted view is a UINavigationItemView and the non-highlighted one is simply a UILabel.
It seems we’ve hit another wall.
James