We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Code that craps out:
@try { [target mirrorSketch]; } @catch(NSException *e) { #ifdef DEBUG NSLog(@"Exception: %@", e); #endif NSString *message = NSLocalizedString(@"The generated mesh will be too complex to be efficiently edited by this software.", nil); NSString *title = NSLocalizedString(@"Mesh too complex", nil); UIAlertView *alert = [[UIAlertView alloc] initWithTitle:title message:message delegate:nil cancelButtonTitle:NSLocalizedString(@"Ok", nil) otherButtonTitles:nil]; [target restartSketch]; [alert show]; } @finally { [[EAGLView sharedGLView] drawView:nil]; }
The text was updated successfully, but these errors were encountered:
Can you please try with ARC turned off? (Project > Properties > Clang > General > Enable Objective-C ARC = No)
Also, please see #354 and #405 . If the issue turns out to persist after the latter is fixed as well, please follow up with us :) Thank you.
Sorry, something went wrong.
Fixed with #2869
DHowett-MSFT
No branches or pull requests
Code that craps out:
The text was updated successfully, but these errors were encountered: