Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的应用程序有一个横跨顶部的工具栏。这是一个 UIView,我这样设置空间:
self = [super initWithFrame:CGRectMake(0, 0, 1024, 50)];
我还有另一个在左侧上下运行的工具栏。它也是一个 UIView,我这样设置空间:
self = [super initWithFrame:CGRectMake(0, 50, 75, 760)];
我想结合这两个工具栏。是否可以定义具有非矩形区域的视图?
您需要使用框架 (0,0,1024,810) 添加到视图中。你可以通过将 backgroundColor 设置为 clearColor 使该视图透明。