我有一个 for 循环,但无法从循环外部访问变量:
for (int i = 0, j = 0, k = 0, l = 0; i < [array1 count] && j < [array2 count] && k < [array3 count] && l < [array4 count]; i++ && j++ && k++ && l++)
{
NSDictionary *_myDict = [NSDictionary dictionaryWithObjectsAndKeys:[array1 objectAtIndex:i], @"Apples", [array2 objectAtIndex:j], @"Oranges", [array3 objectAtIndex:k], @"Grapes", [array4 objectAtIndex:l], @"Plums", nil];
}
从内部访问它。
我用单例和实例方法尝试过,它仍然无法访问并且总是返回 nil。
我很想拥有它的全局变量,但不能在循环中声明它。