Tagged Questions
The UIWindow class defines objects (known as windows ) that manage and coordinate the windows an application displays on the screen.
16
votes
2answers
11k views
iPhone - Get Position of UIView within entire UIWindow
The position of a UIView can obviously be determined by view.center or view.frame etc. but this only returns the position of the UIView in relation to it's immediate superview.
I need to determine ...
7
votes
2answers
161 views
Advantages, problems, examples of adding another UIWindow to an iOS app?
Recently I've been wondering about the fact that that an iOS app only has one UIWindow.
It does not seem to be an issue to create another UIWindow and place it on screen.
My question is kind of ...
7
votes
6answers
6k views
Orientation in a UIView added to a UIWindow
OK, bear with me.
I have a UIView which is supposed to cover the whole device (UIWindow) to support an image zoom in/out effect I'm doing using core animation where a user taps a button on a ...
6
votes
5answers
4k views
Getting reference to the top-most view/window in iOS application
I'm creating a reusable framework for displaying notifications in an iOS application. I'd like the notification views to be added over the top of everything else in the application, sort of like a ...
5
votes
4answers
791 views
How to disable long touch in UIWebView on iPad?
How to disable long touch in UIWebView on iPad?
I want to disable long touch from the application. I have no control on the HTML that I am loading on my WebView.
4
votes
1answer
304 views
Apply filter over UIView/UIWindow to modify underlying view rendering
I'm trying to make a "dark mode" for my app, and I'd like to do it in a really easy way. Is there any way to apply a filter or create another view over my other views so that they appear inverted - ...
4
votes
7answers
5k views
Height and width on iPhone (/iPad)
This is just a test application, There is only a AppDelegate class to create all I did was create a Window based app, set the supported orientations to only the landscape in the info.plist, and then ...
4
votes
6answers
9k views
Using UIScreen to drive a VGA display - doesn't seem to show the UIWindow?
HI there,
I'm trying to use UIScreen to drive a separate screen with the VGA dongle on my iPad.
Here's what I've got in my root view controller's viewDidLoad:
//Code to detect if an external ...
3
votes
1answer
114 views
What does setting the UIWindow's rootViewController do?
Assigning a view controller to this property (either programmatically
or using Interface Builder) installs the view controller’s view as the
content view of the window.
The above quote is ...
3
votes
2answers
114 views
what is use of self in 'self.window addSubview : view '?
i am new developer of iphone i want to knw what is the difference b/w these 2 statement
statement1:
[self.window addSubview:lscreen.view];
statement2:
[window addSubview:lscreen.view];
3
votes
1answer
532 views
How to use multiple iOS custom view controllers without a navigation controller
I am building an app that uses multiple types of screens--all which warrant their own custom view controllers. I am successfully switching between view controllers and their related views by ...
3
votes
1answer
2k views
The 'rootViewController' outlet of UIWindow is not available on releases prior to iOS 4.0
I am getting the following error on pre-iOS 4.0 builds:
The 'rootViewController' outlet of UIWindow is not available on releases prior to iOS 4.0. Remove the connection and instead programmatically ...
3
votes
2answers
357 views
Multiple Windows Rotation Problem - iPhone / iPad
My app uses 2 UIWindows.
The first shown has a TabBar controller with ViewControllers that only rotate to Portrait orientations. Up to here everything woks fine.
- ...
3
votes
4answers
5k views
Automatically Sizing UIView after Adding to Window
Note: This may be a duplicate of Subview Doesnt AutoSize When Added to Root View Controller
I have an iPad app that switches between different views in its main window. The view-switching code ...
3
votes
3answers
657 views
How does the overall view hierarchy change when using UIKit view manipulations?
I've been trying to figure out what happens in the view hierarchy when methods like pushViewController:animated, presentModalViewController:animated, and tab switches in UITabBarViewController are ...
3
votes
3answers
6k views
makeKeyAndVisible & makeKeyWindow - uiwindow in iphone
In every application,
there is always written as [window makeKeyAndVisible];
What is mean by makeKey?
2
votes
2answers
263 views
Backward compatibility of UIWindow rootViewController
When creating a new Xcode 4 view based project, it creates that line on the applicationDelegate didFinishLaunching method :
self.window.rootViewController = self.viewController;
But the attribute ...
2
votes
1answer
103 views
releasing UIViewControllers
I am using 3 UIViewControllers in my app and now I am wondering if it is a good idea to release them when I switch from to another. Obviously, it would be the hidden ones which I really dont need them ...
2
votes
2answers
589 views
iPhone - UIWindow rotating depending on current orientation?
I am adding an additional UIWindow to my app.
My main window rotates correctly, but this additional window I have added does not rotate.
What is the best way to rotate a UIWindow according to the ...
2
votes
2answers
729 views
uiview doesn't show in app delegate
When I execute the code below in the simulator I expect to see red fill the screen, but instead it's all black, why?
- (BOOL)application:(UIApplication *)application ...
2
votes
3answers
2k views
Putting a UIView or UIWindow above Statusbar
My goal is to draw an invisible button above the status bar on the top of my iPhone app (dimension 320*20 pixels).
No matter what I try, something is buggy:
For example, I tried to create a new ...
2
votes
3answers
1k views
custom UIWindow orientation
I needed to see touch events on my window, so I subclassed UIWindow to make my a MYWindow class. I am overriding the sentEvent function to receive the touch events on the window and all of that is ...
2
votes
3answers
1k views
Get name of current view residing in a UIWindow
Let's say I add a new view to my UIWindow
[windowRoot addSubview:MyNewView.view];
Is it possible to retrieve the name of that view later on if
I have reference to windowRoot?
Something like:
...
2
votes
1answer
1k views
“Normal” UIButton causing obj_stack_overflow or EXC_BAD_ACCESS exception
It sure looks innocuous enough. In my App Delegate, I check NSUserDefaults for a flag to show tips at startup. If it’s set then, at the end of applicationDidFinishLaunching:, I do this:
...
2
votes
2answers
2k views
why is UIWindow a child and also a parent of UView?
The UIKit reference says UIView is a superclass of UIWindow, but despite of this parentage, a UIWindow actually manages UIViews. This sounds so unusual to me.
Does anyone know what the significants ...
1
vote
0answers
37 views
Replace UIWindow
I'm using phonegap to develop web apps via js, but I would need certain functionality that can only be done in objective c. In detail I want to register touches on the webview, to trigger the ...
1
vote
1answer
62 views
can we show UIPopOver over UIWindow
I'm working on application where I want show popover in
- (void)applicationWillEnterForeground:(UIApplication *)application
app delegate function but application throwing exception
...
1
vote
1answer
145 views
After rotation UIView coordinates are swapped but UIWindow's are not?
Using Xcode 4.2.1 iPad iOS 5.0.1, create a new "Single View" iPad project. In the controller, add:
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
...
1
vote
0answers
60 views
UIWindow not visible on top of Storyboard
I have a UIWindow object that I have want to show on top a Storyboard. That I made like this -
UIWindow *webWindow = [[UIWindow alloc] initWithFrame:CGRectMake(0, 20, 320,480)];
webWindow.windowLevel ...
1
vote
2answers
93 views
Capturing full screenshot with status bar in iOS programmatically
I am using this code to capture a screenshot and to save it to the photo album.
-(void)TakeScreenshotAndSaveToPhotoAlbum
{
UIWindow *window = [UIApplication sharedApplication].keyWindow;
if ...
1
vote
2answers
126 views
Change UIWindow background color when device rotates
My UIWindow initially has a white background. I want to change the background to blue (permanently) when the device rotates. But what actually happens is the color briefly flashes blue then goes back ...
1
vote
2answers
90 views
iOS: renderInContext is rendering a window's contents at -90 degrees?
I am trying to get external screen support up and running. Unfortunately the method I am using to render a window into a CGContextRef is resulting in the window being rotated (without my having ...
1
vote
2answers
92 views
Can't change the size of a UIWindow
I'm trying to add a new window on top of my current one, on an iPad application, but I can't figure out why it always presents itself as fullscreen.
I'm using this code:
UIWindow *window = [[UIWindow ...
1
vote
2answers
170 views
iOS: Can a library in Objective C produce a pop up window and manage an interaction?
I want to make a class in a library that will, upon request, do a complicated interaction with the user. The app that initializes the library will not provide any info like its UIWindow or anything. ...
1
vote
2answers
407 views
iPad: add fullscreen-image during applicationDidFinishLaunching depending on orientation
I'd like to make a "splash screen" while starting the iPad app: the Default-[Landscape|Portrait]~ipad.png is shown while starting, afterwards I'd like to add the same image by myself and let it fade ...
1
vote
3answers
255 views
iOS - Get location of a view in a window?
I have a UIView that displays a popup after it's been clicked.
The popup needs to be added to the main UIWindow to make sure that it goes on top of everything else.
I want the position of this popup ...
1
vote
1answer
90 views
Subclassing UIWindow - Need Preprocessor Help
Yes, I know subclassing UIWindow is frowned upon, but my subclassed UIWindow is for debugging purposes only (it takes a screenshot of the current-page once a specific motion event is detected).
...
1
vote
3answers
182 views
How to remove navigation bar from splash screen?
I have problem that is in my code i create splash screen for a time interval. When it execute then on the top of view a navigation bar is appeared. Now i want to hide that navigation bar. How i ...
1
vote
2answers
386 views
Battling with Xcode not displaying my UIWindow
See edit at the end of the question
I'm trying to get a simple iPhone app up and running and failing miserably :(
I have a very simple set up. I have an app delegate, a view controller, and an xib ...
1
vote
0answers
187 views
UISplitView popup button not showing when put in a view controller
I took the apple standard example, MultiDetailView and just added a generic view controller in between the app delegate and the split view controller.
window > view controller > ...
1
vote
1answer
222 views
How does one eliminate the rounded corners on the main window on an iPad app?
I have seen some iPad apps that fill the screen (e.g. Stanza) or have squared off corners under the status bar (e.g. the iPod player has square corners at the top; can't tell at the bottom). Anyone ...
1
vote
1answer
5k views
Best way to change between views in iOS
How do you go from one view to another? Is
[window addSubview:myView];
The only option or is there a better way to do this?
1
vote
0answers
397 views
presentModalViewController on external UIWindow
I'm adding an external display capability to my iPad and seeing odd behavior from presentModalViewController. To get the proper view orientation on the external monitor, I've rotated the UIWindow ...
1
vote
3answers
855 views
How to remove a UIWindow?
I thought it was easy as [myWindow resignKeyWindow] and [self.window makeKeyAndVisible] but I guess not… Would you guys know what to do?
Thanks :)
1
vote
1answer
105 views
Custom control doesn't display in window
I'v created view based application. And Added new class which extends from UIView. This class contains some controls in it (simple controls). Now I want to display/hide this control when user click on ...
1
vote
1answer
509 views
App running on iPhone 4 has a 320x480 resolution instead of 640x960
I'm creating an iPhone app, which will run on iPhone 3 and iPhone 4.
To that point, I was trying to make the images adjust to the resolution, but it turns out that even when running on the iPhone 4, ...
1
vote
0answers
74 views
UIWindow gets distorted weirdly when outputted to an external screen
After I connect my iPad to an external screen, my window gets distorted all weirdly. I'm guessing this is because the screen's resolution is different than the iPad's and my app is not setup to ...
1
vote
1answer
870 views
Passing touch events to UIViewController's view
I'm trying to have my iPad app mirror the app's screen to a secondary screen via a VGA cable. Due to performance issues, I only want to have my view's displayed on the secondary screen, but still ...
1
vote
4answers
4k views
how to get my UIWindow using UIApplication?
I have only one window and I tried
UIWindow* mWindow = [[UIApplication sharedApplication] keyWindow];
but this returned nil.
I also tried:
UIWindow* mWindow = (UIWindow*)[[UIApplication ...
1
vote
4answers
412 views
No of UIWindow instances in an iPhone App
Can some one confirm me that only one UIWindow instance is possible in any iPhone Application at any time?
UPDATE:
I found the following information in this link . According to this there can be ...