new crash in Xcode 4
new crash in Xcode 4
- Subject: new crash in Xcode 4
- From: David Rowland <email@hidden>
- Date: Wed, 13 Jul 2011 14:06:19 -0700
I finally installed Xcode 4 and SDK 4.3 yesterday, and I have been testing my code against it. Most is fine, but I have a crash where none existed in Xcode 3. The problem is in an animation routine,
- (void)highlightLabel:(UILabel *)label { label.alpha = 1.0; infoButton.hidden = FALSE; [UIView animateWithDuration:2.5 delay:0 options:UIViewAnimationOptionAllowUserInteraction animations:^{label.alpha = 0.0;} completion:^(BOOL finished){if (finished)infoButton.hidden = TRUE;}]; }
The report is,
2011-07-13 13:51:55.884 G[3347:207] *** +[UIView animateWithDuration:delay:options:animations:completion:]: unrecognized selector sent to class 0x21c189c
And it appears to be the completion routine that is doing it. infoButton is retained and should be in existence at this point. The source code has not changed since Xcode 3.
Anyone recognize this problem?
thanks,
David
|
_______________________________________________
Do not post admin requests to the list. They will be ignored.
Xcode-users mailing list (email@hidden)
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden