ios - Navigation working very slow -


on working navigation based application performing 3-4 push. when pop 4 controller view , on takes time 2 sec delay. performing background operations storing images in file manager when press button previous view nav bar gets clicked because of slow navigation. unable understand problem delay.

thanks in advance.

try write code push on main thread,

i.e.

dispatch_async(dispatch_get_main_queue(), ^(){      [self.navigationcontroller pushviewcontroller:yourviewcontroller]; }); 

Comments

Popular posts from this blog

php - Wordpress website dashboard page or post editor content is not showing but front end data is showing properly -

How to get the ip address of VM and use it to configure SSH connection dynamically in Ansible -

javascript - Get parameter of GET request -