Great,
For some reason UITableViewCellAccesoryDetailDisclosureButton doesnt show up. Instead the UITableViewCellAccessoryDisclosureIndicator shows instead. Any ideas?
I can see that once I have the DetailDisclosureButton visible, I can click on it and handle the event with:
self.tableViewModel.cellActions.accessoryButtonTapped = ^(SCTableViewCell *cell, NSIndexPath *indexPath)
{
NSLog(@"Cell at indexPath:%@ accessory button has been tapped.", indexPath);
};
then the question becomes, how do I show the Array Of Objects?
Got some other questions:
1) Do you have any gestureRecognizers support in sensible tableview? would like to add a new cell to a section by holding down on the cell, that way I can preselect one of the SCObjectsCell SCPropertyDefinition to the name of the header above the held cell..If u do not support gestureRecognizer, could u tell me how I would add that additional behaviour to a cell or cells.
2) My posts are scattered all around sensibletableview and that wouldn't help you at all when trying to connect where I am trying to head with my app. I think I might make a new post in regards to my project and continue to ask all kinds of questions in that post. Maybe I could add tags to the post as well. What you reckon?
Thanks,
Ben
Edited by alphaai, 04 June 2013 - 11:44 PM.