1. 程式人生 > >[iOS]字串轉字典

[iOS]字串轉字典

有點時候,我們json中有post請求的網址,這個時候我們需要把網址字串轉換成body體 字典   放在post請求中

    NSString *body = [self.url_C_componentsSeparatedByString:@"="].lastObject;

NSData *data = [body dataUsingEncoding:NSUTF8StringEncoding];

NSDictionary *dic = [NSJSONSerializationJSONObjectWithData:data options:NSJSONReadingMutableContainers

error:nil];