ios fade out splash screen (iphone 5 friendly)

前端 未结 4 693
梦谈多话
梦谈多话 2020-12-16 05:29

I\'m wanting to spoof the feel of the main splash screen fading out whenever applicationDidBecomeActive is called, but it\'s not working. What am I doing wrong?

4条回答
  •  一生所求
    2020-12-16 05:49

    Try adding it directly to your window instead of the rootViewController.view.

    [self.window addSubview:splash];
    

    You may also need to rotate the image using view.transform to align with the startup image.

提交回复
热议问题