[ComplexTableViewCell touch]: unrecognized selector sent to instance
In order to achive automatic test with Titanium iphone builds, I try desperately to touch a table cell :
NSIndexPath *indexPath = [NSIndexPath indexPathForRow:0 inSection:1];
UITableViewCell *cell = [[mainMenuView dataSource] tableView:mainMenuView cellForRowAtIndexPath:indexPath];
[cell touch];
Nevertheless, it fails with the following error : [ComplexTableViewCell touch]: unrecognized selector sent to instance
Any idea to fix this issue ?