-
Notifications
You must be signed in to change notification settings - Fork 266
New issue
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
Support for iPad? #26
Comments
I've been using it with iPad apps all the time. You can open the demo provided in the project and change the device family to ipad. The demo UI will look bad on the ipad, but everything should be functional. |
I am also just getting a black screen (http://screencast.com/t/UXpxN3fSdB) on the iPad 4.3 emulator. It seems the issue has to do with the calculation of the statusbar location. The black screen you're seeing is actually the status bar overlay, drawn with the dimension (w:1024, h:1024). As a quick check, try commenting out the code in "updateStatusBar" in the DCIntrospect class. |
I think I found the culprit. Do your applications launch into portrait or landscape mode? DCIntrospect works fine when the application supports portrait orientations, but seems to fail when you restrict the application to landscape. I tried updating DCStatusBarOverlay::updateBarFrame replacing all instances of self.frame.size.* with the constant 20, and then the bar is resized correctly. However, possibly due to the unexpected launch orientation, the transforms don't work as expected and the overlay status is left floating in the middle of the screen... more precisely, at offset (748, 505) as measured by DCIntrospect itself. |
Yes, and the problem can be reproduced with the DCIntospect Demo as well. Simply set shouldAutorotateToInterfaceOrientation to UIInterfaceOrientationIsLandscape(interfaceOrientation). |
I've tried to add a static variable to remember the first orientation the method goes through and use that to counter the expected rotation. See https://github.com/gradha/DCIntrospect/commit/bae3260b4477c731f8c0029174b2f2cdda788272 |
Ok, ignore that one, I was looking at the wrong place, this should work better: https://github.com/gradha/DCIntrospect/commit/548afd9cbec17f210b902d4c592d1419da58a7c1 The help still comes up rotated incorrectly, but the bar should not be a problem any more. See if it works for you. |
Looks good. This does fix the status bar orientation issue for me. |
…d_try Fixes size for non portrait launch apps. Refs #26.
need restart Project and setting devices is iPad, |
Has anyone got this working for iPad? I'm getting only a black screen with DCIntrospect on it.
The text was updated successfully, but these errors were encountered: