Hello,
I have a tabBar and a segmentedControl on every view in my app. When the user touches the update button, I get som data via NSURLConnection and parse it. Everything works fine except for when I uses the tabbar and/or the segmentedController at that moment. Then it sometimes crashes.
I have defined the following when the update button is pressed, and when the update is done I put it all to normal again.
self.tabBarController.tabBar.userInteractionEnabled = NO;
self.view.userInteractionEnabled = NO;
self.navigationItem.titleView.userInteractionEnabled = NO;
Is there an alternative way to solve this?
Thanks in advance
MACloop
I have a tabBar and a segmentedControl on every view in my app. When the user touches the update button, I get som data via NSURLConnection and parse it. Everything works fine except for when I uses the tabbar and/or the segmentedController at that moment. Then it sometimes crashes.
I have defined the following when the update button is pressed, and when the update is done I put it all to normal again.
self.tabBarController.tabBar.userInteractionEnabled = NO;
self.view.userInteractionEnabled = NO;
self.navigationItem.titleView.userInteractionEnabled = NO;
Is there an alternative way to solve this?
Thanks in advance
MACloop