I am trying to convert the code below in objective c the code is basically a NSDictionary variable defines as an array.. its like a NSDictionary inside a NSArray..
var items = [NSDictionary]()
Simple as that:
NSArray <NSDictionary *> *items = @[@{}];
And if you want the array to be mutable:
NSMutableArray <NSDictionary *> *items = [NSMutableArray array];