在我的表格视图中,我通过按下按钮动态添加行。
detailTextLabel.text
取决于在另一个视图中获得的通过或失败结果
我试图弄清楚如何最好地检查有多少行包含“失败”这个词
我想也许可以添加一个布尔值并计算标志被提升了多少次?但是不确定如何计算 bool == YES 的次数?
if(cell.textLabel.text && [cell.detailTextLabel.text rangeOfString:@"Fail"].location != NSNotFound){
//count total amount of rows that detailTextLabel.text == failed, need to count here?
}
或者我可以检查所有行self.circuits.count
中的“失败”这个词吗?