I have an application, in whichUIViewController hangs or freezes while performing layer operation on UIView
I have written my code like this
viewLayer.cornerRadius = 8;
[viewLayer setShadowColor:[UIColor lightGrayColor].CGColor];
[viewLayer setShadowOffset:CGSizeMake(0, -1)];
[viewLayer setShadowOpacity:1];
[viewLayer setShadowRadius:2.0];
This code is written in viewDidLoad method, so its hangs the animation while navigating to this viewController

