由于未捕获的异常"NSInvalidArgumentException"而终止应用程序,原因:"-[__NSArrayM对象为密钥:]:发送到实例的无法识别的选择器



我正在尝试像这样更改以下数组。实际响应:

 errFlag = 0;
    errMsg = "Got Slot successfully.";
    errNum = 128;
    slots =     (
                {
            date = "";
            slot =             (
                                {
                    booked = 1;
                    end = 1510822800;
                    "end_dt" = "09:00:00";
                    id = 5a02a0372279511b1c968a10;
                    locId = "";
                    radius = 1;
                    "slot_price" = 20;
                    start = 1510815600;
                    "start_dt" = "07:00:00";
                }
            );
        }
    );

我想要的回应是...

{
 "start_dt" = "07:00:00";
                    }
{
 "start_dt" = "11:00:00";
                    }
{
 "start_dt" = "14:00:00";
                    }

我尝试了以下方式,但我最终得到了一个赎回。

if (requestType == RequestTypeGetAllMetSlots)
        {
            // altering the response into an array
            NSDictionary *slotResultsDict = response[@"slots"];
            NSLog(@"Priniting timeSlotResponseDict%@",slotResultsDict);
            timeSlotResponseArray = [[slotResultsDict objectForKey:@"slot"] valueForKey:@"start_dt"];
            NSLog(@"Priniting timeSlotResponseArray%@",timeSlotResponseArray);

        }

以下是我得到的解释。请帮助我..

 Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[__NSArrayM objectForKey:]: unrecognized selector sent to instance
崩溃,

因为response是一个数组而不是字典。而且slot也是一个数组而不是字典。

试试这个。

NSArray *slots = response[@"slots"]
NSDictionary *slotResultsDict = [slots firstObject];
NSLog(@"Priniting timeSlotResponseDict%@",slotResultsDict);
NSDictionary *subSlot = [[slotResultsDict objectForKey:@"slot"] firstObject];
timeSlotResponseArray = [subSlot valueForKey:@"start_dt"];
NSLog(@"Priniting timeSlotResponseArray%@",timeSlotResponseArray);

或者在一行中。

NSString *startDate = [[[[response[@"slots"] firstObject] objectForKey:@"slot"] firstObject] objectForKey:@"start_dt"];

最新更新