How can i assign value of nsmutable array which is inside of nsmutable dictionary into another nsmutable dictionary or NSDictionary?
NSMutableDictionary *readers = [[NSMutableDictionary alloc] init];
[readers setObject:[[NSMutableArray alloc] init] forKey:@"id"];
readers[@"publicAccess"] = @NO;
// Create dictionary of parameters to be passed with the request
NSDictionary *data = @{
// @"reader_ids": [NSString stringWithFormat:@"%@",[readers[@"id"]componentsJoinedByString:@","]],
};
NSDictionary *data = @{
@"reader_ids": // i need here values of "id" as string which is separated by comma since **reader_ids** is string property and id is MSMutable Array which contains datas.
I need to get value of both id and publicAccess and assign into another NSDictionary.