In Objective-C, how do I draw a 2D shape similar to the one pictured here? (sorry could not embed image).
Thanks!
-appleHap
In Objective-C, how do I draw a 2D shape similar to the one pictured
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Cocoa has a number of primitives for 2D drawing. You’ll want to check out the Cocoa Drawing Guide, specifically the section on paths, which will detail the use of
NSBezierPathto draw such shapes.