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
Example: Telling Typhoon to inject a property that doesn't exist eats the exception
No meaningful error is thrown. . .
The text was updated successfully, but these errors were encountered:
This seems to only be a problem on iOS7
Sorry, something went wrong.
Workaround:
int main(int argc, char* argv[]) { @autoreleasepool { int returnValue; @Try { returnValue = UIApplicationMain(argc, argv, nil, NSStringFromClass([MPAppDelegate class])); } @catch (NSException* exception) { LogDebug(@"Uncaught exception: %@, %@", [exception description], [exception callStackSymbols]); @throw exception; } return returnValue; } }
No longer happening, AFAIK.
No branches or pull requests
Example: Telling Typhoon to inject a property that doesn't exist eats the exception
{
return [TyphoonDefinition withClass:[MPYourDetailsController class] properties:^(TyphoonDefinition* definition)
{
//property 'yourDetailsView' does not exist
[definition injectProperty:@selector(yourDetailsView) withDefinition:[self yourDetailsView]];
}];
}
No meaningful error is thrown. . .
The text was updated successfully, but these errors were encountered: