i want to display triangle shape UIView instead of using normal UIView.is it possible?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
A UIView is always a rectangular shape, you can't alter that. However, you could perhaps get the effect you want by using CALayer masking. Make a UIView and apply a custom mask to it, whereby the mask has the appropriate data in it for a triangle. Then any actual content you put in your UIView will only be visible in the appropriate 'triangle' shaped area. To make your mask layer, you can either use an image (e.g. a png) or use core graphics to draw a triangle. There's tons of info on this sort of stuff in the Apple Quartz 2D docs. Ther's an example here: http://www.cocoadev.com/index.pl?MaskingACALayer See also this stack overflow question: There's also info about this stuff in Apple's API docs for UIView and CALayer. |
||||
|
|