“我在另一个里面使用两个for循环。在最里面的循环中,我正在检查一个'if条件'如果条件满足,整个循环我的意思是内循环和外循环都应该停止。但目前下面的代码只能停止内循环外循环不停止。请给我解决方案。
for(int i=0; i<a_AllClothing.count;i++)
{
for (int j=0; j<tempAsset_array.count; j++) {
if([l_dressName rangeOfString:ImageName].location!=NSNotFound)
{
NSLog(@"Matched");
break;
}
}
}