As soon as "self.navigationController pushviewcontroller:vc animated:YES" is executed, my CPU goes to 100%. I searched for the same issue on Stack Overflow and found that UITextView
might be creating such problem. I removed UITextView
and it started working fine.
What is it to do with UITextView? What can I do to use it?
I have IB of UITextView
@property(nonatomic ,retain) IBOutlet UITextView *txtvwMessage;
Also I have UITextView's delegate Outlet to my View controller class.