简体   繁体   中英

iPhone Subview Transparent

I subclassed a subview and added it to the current view. It draws a simple circle by overriding the draw method.

But the subview has a black background it looks like by default. How do I make the background of my subclassed subview to be transparent?

does

self.backgroundColor = [UIColor clearColor] not work?

您可以调用下一个代码进入视图初始化:

self.backgroundColor = [UIColor clearColor];

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM