Actually i am displaying events in calendar and for that i am adding subviews for events in UIScrollview. now i want to make some portion transparent in my particular event. Please check below image.

so i want to make that background image of event transparent with particular frame. Let me know if you have any idea about this or any alternative for that.
Here is a basic solution to clear a frame in a view using a custom
drawLayer:inContext:method for your eventView custom class (the class that draws your event). Of course you have to inherit a class from UIView before (eg. MyEventViewClass).You also have to set the
opaqueproperty toNOIs it clear ? 😉