Good day, friends.

There is a task: to draw repeating objects (UIImageView and UILabel) along the curve (if more exactly, it's an arc).

What classes should be used for it?

link|improve this question

What do you mean with "what classes should be used for it?" All you need to do is to calculate the points on the arc and position your views. Do you have trouble with calculating the points ? – DarkDust Aug 18 '11 at 7:05
When I do the same task in Android SDK, I may use android.graphics.Path to draw the path and then position views along it. Is any similar in iPhone SDK? – QuickNick Aug 18 '11 at 7:16
1  
Is there some example ? Because android.graphics.Path looks almost exactly like UIBezierPath, I can't see any methods/features that aid with the positioning of views. – DarkDust Aug 18 '11 at 7:22
OK, thanks for the advice :) – QuickNick Aug 18 '11 at 7:50
Then, the question is, how to draw views with specific angles? – QuickNick Aug 18 '11 at 7:54
show 1 more comment
feedback

1 Answer

up vote 1 down vote accepted

As an alternative to Android's Path, you can use either UIBezierPath or CGPath. The former is Objective-C, the later pure C. I recommend going with UIBezierPath as it's easier to use.

To rotate a view, use the transform property of UIView (see this question for an example on how to use it). But note that you then need to ignore the frame (it's undefined) and need to move the view by modifying the center instead.

link|improve this answer
OK, I'll try it and report the results. – QuickNick Aug 18 '11 at 8:04
Thank's, it works! – QuickNick Aug 19 '11 at 6:14
feedback

Your Answer

 
or
required, but never shown

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