I am trying to create a list of UIEdgeInsets
instances in Objective-C. Since they are not id
type, I couldn't add them into an array.
What I want to do is something like this:
NSArray *contentInsets = @[{10, 20, 30, 40}, {10, 10, 10, 10}, ...];
Thanks.