我對xcode/objective-c頗爲陌生,現在我面臨一個問題。Objective-C選擇數組的一部分
在我的應用程序中,我有一個從我的服務器接收Json數組,我通過segue將數組發送到secondViewController。這一切都正確。
在我secondViewController我收到數組,並選擇我需要的部分;
self.excersiseSection = [self.schemeData objectForKey:@"user_excersise_sections"];
這將輸出我推送到該控制器的數組部分,所以沒關係。現在,我想 在這個數組中選擇嵌套的'數組'(打印我的表格單元格)我試圖像上面的代碼一樣使用索引'exercise'來完成它,但沒有成功。
{
"user_training_days": [
{
"day_id": 1,
"day_name": "Monday",
"training": "trainingsdag",
"user_excersise_sections": [
{
"section_title": "Legs",
"exercises": [
{
"exercise_title": "Leg press",
"excercise_sets": "4",
"excercise_reps": "12",
}
]
},...etc
'user_excersise_sections'包含一個字典數組,因此您可能有多個'exercise'數組。你想怎麼處理? – Droppy 2014-09-24 13:47:04
真的,如果需要的話,我可以重建jSon數組,如果它使事情更簡單。我試圖達到的是獲得一個數組中的練習,所以我可以將它們打印在TableViewCell中 – directory 2014-09-24 13:52:05
@Freshtea查看我的編輯 – l0gg3r 2014-09-25 13:56:35