i´ve defined an array which contents 4 UIView objects which were already defined

NSArray *districtArray = [NSArray arrayWithObjects:view1, view2, view3, view4, nil];

now i´d like to add a subview to an UIView accessing the array via an index. i can´t figure out how i have to write that

it should be something like that

[districtArray[0] addSubview:poiObject];

could anybody give me a hint about the syntax?

thank you!

link|improve this question

feedback

1 Answer

up vote 4 down vote accepted

To get the n-th object in an NSArray, use

[array objectAtIndex:n]

e.g.

[[districtArray objectAtIndex:0] addSubview:poiObject];
link|improve this answer
that was fast! wow! – rockstarberlin Apr 6 '11 at 15:15
it works. thank you very much! :-) – rockstarberlin Apr 6 '11 at 15:15
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.