Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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

share|improve this question
Put in inside the init method instead. – H2CO3 Feb 2 at 7:05
I tried it.. nothing happen – Sachin Feb 2 at 7:10
If you're initing from a xib it wouldn't as the viewlayer probably doesn't exist yet. – nickfalk Feb 2 at 7:11
2  
Are you sure the delay is actually happening due to this code or are you perhaps experiencing delays due to the view being initialized? – nickfalk Feb 2 at 7:14
2  
Put this in viewDidappear, your view will be prepared by then and would be ready for these UI changes. – Reno Jones Feb 2 at 7:16
show 4 more comments

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.