當我定義應用程序崩潰的頭文件中使用的NSMutableString
NSMutableArray *numbers;
在實施我在init方法
numbers = [[NSMutableArray alloc] init];
我字符串添加到這個數組
[numbers insertObject:number atIndex:[numbers count]];
第一初始化該陣列
但是,當我訪問這樣的陣列中的另一個方法
NSLog(@"%@", [numbers count]);
應用程序崩潰。任何想法爲什麼發生這種情況