The UIWindow class defines objects (known as windows ) that manage and coordinate the windows an application displays on the screen.
-2
votes
0answers
11 views
How to get the top most window on jailbreaked ios [closed]
I'm writing a plugin that adds some view on the top most window,even above the status bar.but I can't find any way to get the screen window.How can I do.
By the way,does any one know how to find the ...
-1
votes
2answers
25 views
set appdelegate' window rootviewcontroller
In Home ViewController based on user selection I will have to load selected viewcontroller. For this I am changing AppDelegate.window.rootViewController to the navigationcontroller inited with ...
1
vote
1answer
38 views
What determines window.frame?
I've been working on updating a few apps to support iPhone 5. They've had some layout issues that might be explained by the UIWindow always having the frame of an iPhone 5 regardless of the device it ...
0
votes
0answers
16 views
Setting UIWindowLevel to UIWindowLevelStatusBar stops UIMenuController from showing
I'm working on an app that I want to add a subview to my status bar. To accomplish this, I set the UIWindow's windowLevel to UIWindowLevelStatusBar. Everything works as expected and I'm able to add my ...
0
votes
0answers
65 views
TTF font doesn't work on iPad mini
I am using a ttf font in my project. It works well on iPhone and ipad.The problem is;
I have custom popup which is a subclass of UIView and i add this popup to uiwindow with this code:
int ...
0
votes
1answer
35 views
UIViewController not passing touches to other Views
I have an overlay view (covering the entire screen), I can receive touches but it isn't passing them down the responder chain.
I add the subview like this:
UIWindow *mainWindow = [[UIApplication ...
0
votes
0answers
82 views
Adjust orientation on uiwindow using CGAffineTransformMakeRotation
Actually i want add a uiwindow which covers total screen with a view on it.i heard window doesnt support orientations,when i add window it is adding in potrait mode on my ipad,my app works only on ...
1
vote
1answer
57 views
UIWindow and Statusbar
I have a DialogViewController that I load up for the main UI (login)
window = new UIWindow(UIScreen.MainScreen.Bounds);
var logonView = new LogonViewController();
...
-2
votes
3answers
45 views
How to switch window view [closed]
In my app I have one .xib file with three Windows. I'm not using Storyboard.
To change the view between Windows when pressing a button, I used this code:
-(IBAction) SwitchView1 {
[window ...
0
votes
1answer
76 views
“Application windows are expected to have a root view controller at the end of application launch” occurred after I disable storyboard
I disabled storyboard by change the Main Storyboard to nothing. And I have rewrite everything so I don't need a storyboard and it working correctly. But in the console log, Application windows are ...
0
votes
0answers
57 views
iOS AwesomeMenu new view on part of screen
I'll start off by saying I'm completely new to XCode, Objective-C and the Model-View-Controller paradigm.
I want to use Levey's Awesome Menu for my iOS application. ...
1
vote
1answer
38 views
View is only displaying for a fraction of a second
I have a LoginViewController class that extends UIViewController that is only displaying for a fraction of a second. In my AppDelegate.m class I try to allocate a UINavigationController that will ...
1
vote
1answer
73 views
Switch between two UIWindow's
I am integrating Pushwoosh SDK for Push Notification, which is using UIWindow to represent HTML page sent from Pushwoosh portal
- (void) showWebView {
self.richPushWindow.alpha = 0.0f;
...
0
votes
2answers
55 views
changing View from UIWindow class
I would like to know how can i change the view from a UIWindow class..for example, My app has a countdown timer view, when a user starts the timer, they can switch to other screen and the timer runs ...
1
vote
1answer
32 views
Rotation Not working in iOS-6.0 and above versions
I have prepared one view controller file named "CncWindowController" and In XIB file, i take window object (instead of UIView) and connected it to view outlet. So when I access its view, i get window ...
0
votes
0answers
27 views
Q:how to use UIWindow sendEvent?
For some reason, i want to simulate the behavior of user (such as Tap, DoubleTap ...) via oc code instead of js.
That is, I need to code OC to create some touch events (Tap, DoubleTap ... events) ...
0
votes
1answer
132 views
Adding a CALayer sublayer inside of UIView init
I'm trying to add a CALayer as a sublayer in a UIView subclass, but when I add the sublayer inside the init method I get EXC_BAD_ACCESS when I add the view to another view or window.
Init method:
- ...
1
vote
0answers
113 views
Add subview above statusbar in storyboard project via UIWindow
I used UIwindow to add subview above the status bar ,but is of no use.Every time I press button no window [[UIApplication shareApplication] windows] shows that there are 3 windows.
I added a button ...
0
votes
0answers
13 views
How to set an image into a UIWIndow without it being a pattern image
Hi guys I am making a jailbreak tweak that will display a UIWindow when an anction is called and I want the UIWIndow to display an image. I have got it working and it shows the image but it does it in ...
0
votes
3answers
136 views
trouble with displaying another UIWindow
I'm writing an iPad app, and I'm trying to display a second UIWindow on top of the main window in my app. The main thing I'm trying to do is create a log in window (how to present a login, with ...
0
votes
1answer
67 views
Repositioning UIWindow after Rotating it
Recently I made a custom Alert which is a subclass of UIWindow. I'm trying to rotate the alert when the UIViewController is in landscape orientation. I'm able to rotate it successfully, however I'm ...
0
votes
0answers
18 views
tagesture delegate method touch view
i have a tap gesture delegate method like this
- (BOOL)gestureRecognizer:(UIGestureRecognizer *)gestureRecognizer shouldReceiveTouch:(UITouch *)touch{
...
0
votes
2answers
39 views
Present UIView over darkened UIWindow
I am trying to present a UIView while at the same time darkening the rest of the screen. However, I am having difficulty. This is my code:
UIWindow *window = [[UIApplication sharedApplication] ...
0
votes
1answer
40 views
Keep UIWindow size after setting it's UIScreen value
I'm using AirPlay, the primary content of the iPad is beamed to the AppleTV fine.
When I want different information on the iPad than is on the AppleTV, I'm getting resolution issues.
I instantiate ...
0
votes
1answer
95 views
UIWindow loses rootviewcontroller after launch
My application has a UIWindow with a correctly set rootview controller. I know this because I check for the rootViewController after it is set (in the app delegate), and all is well.
Once My app ...
0
votes
0answers
15 views
Pass UIGestures to external uiwindow
I am opening up a viewcontroller on an external window from an ipad. This window contains a uiscrollview of images. I would like to swipe or tap on the iPad and have the touches/swipes/pinches passed ...
0
votes
1answer
85 views
Keyboard doesn't come up with multiple UIWindows
I have created a loading UIWindow which I call and makeKeyAndVisible when I start loading. After I'm finished, I makeKeyAndVisible my main UIWindow. But my problem is after doing this, when I click on ...
0
votes
1answer
317 views
iOS transparent window / alert / box overlay that shows loading message
is there a specific class for displaying a transparent loading box / alert / window, or are people constructing these loading message boxes from UIWindow class?
Here is a picture of what I am talking ...
0
votes
2answers
127 views
How to show a UIWindow over the keyboard but under a UIAlertView
I want to show a UIWindow over the keyboard but then allow the UIAlertView shown when asking for permission to "Use Your Current Location" to show above the window.
Setting the window's windowLevel ...
0
votes
5answers
105 views
Dissmissing the keyboard when UITextField and UITextview displayed inside of UIWindow
I've added my UITextField and UITextView inside a UIWindow I can not able to type inside in both of them. Both are not letting me allow to type in those fields. And, can't able to dismiss it when ...
3
votes
1answer
209 views
Handling application:willChangeStatusBarFrame:
In my app, I handle the change of the status bar frame by simply scaling the entire window to fit it in the remaining screen space:
- (void)application:(UIApplication *)application ...
0
votes
0answers
73 views
subview from UIWindow and sending it back to UIwindow
I have an UIWebView loaded with div, act as editor to write. Now i am adding UIWebView as sub view on UIWindow to set the frame equal to full screen and to hide the UIKeyboard, but at some button ...
0
votes
1answer
106 views
Switch to a differnet UIViewController when the device orientation changes
I am currently building an app for iPad where the view structure is completely different depending on the device orientation.
When the app is in portrait I am using the ECSlidingViewController ...
0
votes
2answers
195 views
ios 6 iPhone window.rootViewController crashes
My app works fine with iOS 5.1 on both iPad and iPhone. In iOS 6 app works fine on iPad but crashes in iPhone while setting the window.rootViewController = navigationViewController. I have set ...
0
votes
1answer
176 views
Why is height of window 480 when applicationFrame height is 460?
I create a TabBar VC in my AppDelegate class, setting the window frame by [[UIScreen mainScreen] bounds]. Since I have a status bar displayed the height should be 460, but it appears to be 480. If I ...
0
votes
2answers
69 views
How to present ModalViewController in iOS app with TabBarController?
I am looking for feedback on a best practice approach when you want to present a LoginViewController as a "ModalViewController" in an app with TabBarController.
The case is this:
- Application ...
1
vote
2answers
62 views
Passing touches between stacked UIWindows?
I have two windows -- a front one, and a back one. The front one is used to overlay some stuff on top of the back one. I want to be able to capture touches on some parts of the front window, but not ...
0
votes
2answers
221 views
Examples where makeKeyAndVisible is not required for UIWindow
I was wondering in all iOS applications we have to write makeKeyAndVisible for our UIWindow object. So is there a example where we dont want our application to makeKeyAndVisible.
If we always require ...
0
votes
1answer
163 views
UIView added on top of window does not rotate on iOS
I have a tabBar based application and want to present some custom view above whole screen (not as modal view) and I do it like that:
[self.view.window addSubview:self.myViewController.view];
The ...
0
votes
0answers
64 views
Why doesn't hitTest return the view attached to the window?
Can someone spend a second and give me a pointer please?
I've got a UIView attached to a UIWindow, and I'm playing with hitTesting of points (for reasons that are much more complex than I want to get ...
0
votes
0answers
34 views
subviews in window hide camera button in ios
AppDelegate* myDelegate2 = (((AppDelegate*) [UIApplication sharedApplication].delegate));
[myDelegate2.window addSubview:pointerImage];
I kept a image view in window as above code.I want to use the ...
0
votes
1answer
110 views
Blank space below the status bar
In app delegate I use [[UIScreen mainScreen] bounds] (which is by default) to set frame for the window.
self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
But when I try ...
0
votes
2answers
156 views
iOS splash screen black window
Hi I just wondered if it is possible to change the colour of the black view that appears when you first launch an app. I am using a transparent splash screen image and wondered if possible to change ...
2
votes
3answers
59 views
custom window gets removed when closing app
I am creating an app that has two windows, it works like: when I click the button, the second window shows up and takes over the screen. When I hit the close button(on the second window), the second ...
1
vote
1answer
377 views
Creating new UIWindows, taking over key window — bad practice?
I'm working on an app which needs to display an overlay an top of everything else. It does this by creating a new UIWindow, and using makeKeyAndVisble to "take over" the screen. When it's done, it ...
1
vote
0answers
121 views
Observe event notifications sent to root view controller and forward them to child view controllers
I am working on an app that has UISplitViewControllers inside a UITabBarController under iOS 6.
This used to be a "no no," but apparently it's okay now?
Regardless, in order to make rotations work ...
0
votes
2answers
109 views
UIWindow makeKeyWindow returns an EXC_BAD_ACCESS
[[[[UIApplication sharedApplication] delegate] window] makeKeyWindow];
I've been trying to look up another way to do this exact same action but I haven't found anything. What happens is when this is ...
0
votes
2answers
330 views
Get the current UIView's ID objective-c iphone
How can I get the current UIView's ID so that I can use it later without using an IBOutlet?
I would like to add an image over the top of my app but I'm switching views frequently and would like to be ...
0
votes
0answers
199 views
Black second screen on the iOS iPad simulator in landscape mode
I'm trying to get an external screen for an iOS iPad app up and running. Currently I just could test this with the iOS simulator (VGA connection kit is on it's way).
My problem is that when starting ...
0
votes
4answers
154 views
Show splash screen only once IOS
I understand, Its a HIG violation to play around with the default launch icons and splash screens, but I have requirement such that, I need to display the splash screen only for the first time, Is it ...





