MattFedo
MattFedo
I am having the same exact issue. I am using the transition to do full screen transitions, so it is incredibly noticeable. Has anyone taken a shot at this yet?...
Could this be an issue since iOS8 is depreciating certain segue values? I am going through the source right now to see if I can find anything. We need to...
I've narrowed it down to the cleanupLayers function, in MPFlipTransition.m, when removing the animationView from the Superview. Every time this is called, the view flashes for a brief second on...
Just a quick note: This only happens when assigning a segue between 2 UIViewControllers in a Storyboard or calling in line. When you use it with a UIView inside a...
Try something like this: `NSData *imageData = UIImageJPEGRepresentation([UIImage imageNamed:@"IMAGENAME.jpg"], 1);` `NSString *stringBase64 = [imageData base64EncodedStringWithOptions:NSDataBase64Encoding64CharacterLineLength];` `NSString *html = @""; html = [html stringByAppendingString:[NSString stringWithFormat:@" ", stringBase64]];` `PDFCreator = [NDHTMLtoPDF createPDFWithHTML:html...