我正在该应用程序中开发iOS应用程序我有一个如下屏幕 我使用UITableView为每个问题设计了这个屏幕,其中有四个选择答案在一行...现在我想要的是如果用户没有在任何一个问题中选择任何一个单选按钮我不想允许用户进行汇总。在每个问题中选择答案后,我只想让用户提交。 我试过下面的代码不能正常工作
NSArray *sr;
sr = _tableViewRef.indexPathsForSelectedRows;
if(sr != 0 )
{
if (selectedArray.count == questionsArr.count)
{
[objRef showAlertWithTitle:@"Application..!" message:@"Submitted Successfully" thirdParam:self];
}
else
{
[objRef showAlertWithTitle:@"Application..!" message:@"please select any one option" thirdParam:self];
}
}
请帮助我谢谢..