iphone - iOS: At a specific coordinate, adding a UIView as subview of another UIView -


i have ten (x,y) coordinates values in nsinteger array. //yet implement

i want add series (10 array) of uiview on bigger uiview.

[self.mybiggerview addsubview:mysmallview]; 

i not getting how add mysmallview @ specific (my coordinate array) coordinate. please help

either after or before

[self.mybiggerview addsubview:mysmallview]; 

set frame of small view this:

mysmallview.frame = cgrectmake(coord1,coord2,width,height); 

Comments

Popular posts from this blog

html - Sizing a high-res image (~8MB) to display entirely in a small div (circular, diameter 100px) -

java - IntelliJ - No such instance method -

identifier - Is it possible for an html5 document to have two ids? -