Tuesday, 15 April 2014

objective c - Done button text Color of UIDocumentInteractionController -


Can I change the text color of the button in the UIDocumentInteractionController? There is currently a white full button that is not showing up properly

Are a TintColor Setting Window? This will change the color of some system-generated buttons, such as the Cancel button in the UIDOn interface on iPhone. I could not find any way to override that, so I temporarily finished app tint color before showing a document interaction controller, then changed it:

  - (IBAction ) OpenIn: (NSURL *) URL {UIDocumentInteractionController * Controller = [[UIDocumentInteractionController interactionControllerWithURL: URL] retained]; Controller Delegate = self; Self.appDelegate.window.tintColor = [UIColor blackColor]; // Temporary override [Controlled presentOpenInMenuFromBarButtonItem: animated self.openInbutton: TRUE]; } - (Zero) Document Interaction Controlled Dissociation Open Inmenu: Controller {[Controller Release]; Self.appDelegate.window.tintColor = self.appDelegate.textColor; // tintcolor}  

I plan to file a bug report for this because my app has dark text with white text, and it is in white background White background creates UI elements provided by the system I think that these elements should only change the color of their text to match the app if they change their background color to match the app. There is also a way to provide


No comments:

Post a Comment