Anybody else having trouble with the 4.3 iPhone Simulator in XCode 4.2(lion) or 4.0.2?
I have code that has long been working, tested, and in production that uses blocks to specify completion actions. For example, I use UIView animate to fade out some text on top of the label as follows:
[UIView animateWithDuration: 0.0
delay: 0.0
options: (UIViewAnimationOptionCurveEaseInOut | UIViewAnimationOptionTransitionNone)
animations: ^{
videoTextLabel1.alpha = 0.0;
videoTextLabel2.alpha = 0.0;
videoTextLabel3.alpha = 0.0;
}
completion: ^(BOOL completed) {
[self fadeInNextMeditationLine: 0];
}];
I reliably get EXEC_BAD_ACCESS in the simulator -- never a problem on the device.
In another place I use my own completion block implementation to take action after the user has dismissed a modal view.
ValuePickerController *controller =
[[ValuePickerController alloc]
initWithNibName: kValuePickerXIBFileName
bundle: nil
labelText: @"prompt")
value: alertSettings.frequency
minimumValue: kMinimumFrequency
maximumValue: kMaximumFrequency
completionBlock: ^(NSInteger newValue) {
[self updateFrequencyText: newValue];
[self changeFrequencySetting];
}];
There are no NSZombies showing up, and analyzer runs clean. Plus this code has been in production for 6 months with no crashes.
Anybody else having this trouble? It's been happening since I upgraded XCode.