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.
我需要HomeScreen通过UIWindow将UIWindow背景设置为透明来查看。如何做到这一点?
HomeScreen
UIWindow
我试过[UIColor ClearColor];但它只显示黑色。
[UIColor ClearColor];
在您的应用程序中看不到主屏幕。Apple 这样做是为了节省电量(他需要在使用应用程序时渲染主屏幕)并防止开发人员通过让用户认为他们在主屏幕上而激怒用户。
这不好做,但它是必要的,那么我认为你使用如下可能对你有用
self.window.backgroundColor = [UIColor colorWithRed:55.0f green:55.0f blue:55.0 alpha:0.05];