vote up 0 vote down star
2

Hello there,

i'm very new to iPhone sdk, mac os, xcode and etc. So don't take my question too hard.

What i'm trying to do is figure out how can I draw an circle on the screen.

(I know how to put image and move it, this is what my source does).

Can you please explain me how can I draw simple shapes on that screen ? :)

P.S. and Also please give me some good sites with tutorials..

My xCode screen

flag

64% accept rate

4 Answers

vote up 6 vote down check

All custom drawing for a UIView needs to be done within its -drawRect: method. You'll need to subclass UIView, move everything from line 41 through 50 into that method in the subclass, and create a boolean property on that subclass which controls whether or not the circle gets drawn. Within your controller code above, you'll need to set the new property to YES and call -setNeedsDisplay on your UIView to trigger a redraw of the view, leading to your circle being displayed.

Alternatively, you could create a UIView subclass that always draws the circle, and just add and remove it from your controller's main view as needed.

link|flag
Thanks, I will try to do that. – Lukas Šalkauskas Aug 3 at 7:55
Still can't make it... :S I'm totaly new to this kind of development idiology, also i'm new to objective-c. Maybe you could give me some example code. I could send mine code to you if you'll give me your contacts. – Lukas Šalkauskas Aug 3 at 17:32
vote up 0 vote down

Try watching the two part lecture series to see how to draw to a UIView:

http://www.myiphoneadventure.com/?p=98

link|flag
vote up 0 vote down

Hmm I can't understand how to do that...

Maybe anyone can explain (In very detailed way) me every step by step strating with creation of new project ?

link|flag
vote up 1 vote down

Please read the documentation on Quartz 2D library that will let you draw the basic shapes and more.

link|flag
Thanks, but why it does't draw in my case ? – Lukas Šalkauskas Aug 3 at 6:08
You might have to get the correct Device GraphicsContext and draw to that graphics context, there are few of them available – Ram Aug 3 at 6:16
Brad is right, you need to override drawRect method and call setNeedsDisplay when you need the view to repaint itself – Ram Aug 3 at 7:32

Your Answer

Get an OpenID
or

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