I have a UiTableView within UiView . I want to set corner radius & shadow in a UIView . I use this code to give shadow with corner and its performance.
myView.backgroundColor = [UIColor clearColor]; [myView.layer setCornerRadius:10.0f]; [myView.layer setBorderColor:[UIColor lightGrayColor].CGColor]; [myView.layer setBorderWidth:1.0f]; [myView.layer setShadowColor:[UIColor blackColor].CGColor]; [myView.layer setShadowOpacity:0.8]; [myView.layer setShadowRadius:3.0]; [myView.layer setShadowOffset:CGSizeMake(2.0, 2.0)];
everything works fine with Portrait mode . My application is supported as Orientation , and we use the Autoresizing property fot. When I Change Orientation Shadow is displaying according to frame of Portrait mode . How can this be circumvented for orientation.
Any idea how to change setShadowPath to Orientation OR related?
Hitarth
source share