使用以下代碼段動態添加元素到數組。應用程序在訪問數組中的元素時崩潰
for (response in jsonDic[@"value"][@"options"]){
NSMutableArray *notifyText = [[NSMutableArray alloc]init];
[notifyText addObject: jsonDic[@"value"][@"options"][response]];
NSLog(@"it is%@",notifyText[1]);
}
當我嘗試訪問使用notifyText[1]
,我錯過了什麼邏輯?
你能告訴我你的迴應? – user3182143