UIView shadow issue with orientation

纵然是瞬间 提交于 2019-12-06 10:04:08

iOS6 Rotation Try this code and let me know if it worked for you

 - (BOOL)shouldAutorotate
{
    if (UIDeviceOrientationIsLandscape([UIDevice currentDevice].orientation))
    {
    self.view.backgroundColor = [UIColor redColor];
    }
else if (UIDeviceOrientationIsPortrait([UIDevice currentDevice].orientation))
   {
    self.view.backgroundColor = [UIColor blackColor];
   }

return YES;
} 

I have a found the solution of my own. i have a created one method - (void) viewWithEffects: (UIView*) myView {// copy the shadow code from the question}. Now i called this method to - (void)didRotateFromInterfaceOrientation:(UIInterfaceOrientation)fromInterfaceOrientation{} .

So when orientation change didRotateFromInterfaceOrientation call and it will give the Corner with Shadow effects. Shadow will set to your view according to Autoresize your view. if your app not supported for both orientation than dont need to do this. Just call one on viewdidload or viewwillAppear. i hope it will help .

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!