Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I want to draw polygon as per given in attachment! Is it possible to do so ? One more thing about polygon, I want to create it as UIView. Just like as we create rectangle and square. Because I need to use "tag" property. Is it possible to create polygon in such a way ?

I have gone through another idea that I should create three views and attach with eachother (given in attachment).

You can consider some view frames as per example..

View 1) CGRectMake ( 0,0,50,50);

View 2) CGRectMake ( 50,0,50,50);

View 3) CGRectMake ( 50,50,50,50);

I can create three views but how to concatenate these views and make one view ( Our Polygon )?

Can you give me solution or any advice to implement such problem ?

share|improve this question
One approach would be to create the largest rect first and add subviews ontop of it, not sure if works though. [view2 addSubview:view1] [view3 addSubview:view2] – Da_smokes Feb 4 at 12:48
@Da_smokes If you mean to create one view with CGRectMake (0,0,100,100) and add there views as subviews, it won't be useful because I can't use frame CGRectMake (0,50,50,50); It would be useless. – Maverick Feb 4 at 12:51

1 Answer

up vote 1 down vote accepted

The entire shape of the UIView will have to be square. You can't create a UIView that isn't square/rectangular.

You can draw it using UIBezierPath...

UIBezierPath *path = [[UIBezierPath alloc] init];

[path moveToPoint:CGPointMake(0, 0)];
[path addLineToPoint:CGPointMake(100, 0)];
[path addLineToPoint:CGPointMake(100, 100)];
... and so on.

Then in drawRect you can...

[path stroke];
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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