The UIViewController class manages the views in iOS apps and mediates the interaction between an app's views, its underlying model objects, and the overall workflow.

learn more… | top users | synonyms

0
votes
0answers
23 views

Why does trying to segue fail in my app when I have custom UITextField backgrounds?

I have the following UIViewController for logging into Instapaper: However, when I press the UIButton to segue to this view, it just remains in its "highlighted" state and the app hangs. It won't ...
-2
votes
0answers
40 views

Navigation between viewcontroller [closed]

How can I pass object from firstViewController to secondViewController knowing that firstViewController is not my first view in the application? secondViewcontroller *s = [[secondViewcontroller ...
0
votes
1answer
29 views

pass an object : multiple uiviewcontroller

this is the senario of my application : I have 3 viewcontrollers, viewcontroller1, viewcontroller2, viewcontroller3. in viewcontroller1, I have simply one button, on the click of this button I add the ...
0
votes
0answers
14 views

How to Add UIViewController from UVIew with orientation management

I'm creating my custom MPMoviePlayer. For full screen management, the MPMoviePlayerController behaves this way : - (void)setFullscreen:(BOOL)fullscreen animated:(BOOL)animated; I would like to do ...
0
votes
1answer
10 views

Xcode close view controller

I have two viewControllers parent and child, from parent I'm opening child viewController like this: ClildVC *modal = [[ClildVC alloc] initWithNibName:nil bundle:nil]; modal.modalPresentationStyle = ...
0
votes
2answers
36 views

Why I get to error when I change default .xib?

I have Main.xib and I added a new Interface SeconView.xib. I want to my secondview.xib to be default. I changed default xib from Main Interface but I get to error like Terminating app due to ...
0
votes
1answer
37 views

iOS: Refresh a ViewController from a popOver

I'm working on a problem where I have a ViewController which opens a popOver when a button is pressed and then in the popOver you can edit some settings which affect the content shown in the mother ...
0
votes
1answer
27 views

iOS VIewController for UIScrollViews content

I have a UIScrollView in my app and I am adding some custom views from xib to it so you can horizontally scroll (tabbing) in ScrollView to change which one is shown. For now this works but I have a ...
1
vote
1answer
21 views

How to present modal view controller from library?

I have a library that must present a modal view. How do I find the top most visible UIViewController to call presentViewController on? My current app has a table view controller, navigation ...
0
votes
2answers
41 views

Should I use a protocol or category with associative objects to give my child view controllers properties?

Im building a custom view controller container and im figuring out which to use to give my children view controllers properties, similarly like UINavigationController grabs a view ontroller's title ...
0
votes
1answer
22 views

How to show a viewController for each cell created by user?

i am wondering how to make that if user adds a new cell in tableview, and when he select it it goes to a detailview, and if he add other cell, its go to other view and keep on. Summing, it gets a ...
0
votes
2answers
25 views

Subview not loading, but not crashing

So I've been struggling all day, trying to get a subview to show up on my app. I'm not getting any errors or crashes, but the subview just isn't showing up. code that calls the subview from the main ...
0
votes
1answer
23 views

UIViewController being pushed down on screen when displayed using insertSubview

Having a bit of a problem, here's the breakdown: My AppDelegate uses as it's rootViewController a view controller. This view controller's purpose is to swap a couple of other view controllers in and ...
0
votes
1answer
32 views

How to create pushViewNavigationController through IB?

I am a beginner of objective-c. I am trying to create pushviewcontroller through IB. When I click the barbutton on navigation controller it is not pushing the view. I wrote log statements in the ...
2
votes
3answers
56 views

iPhone how to display a different view controller in response to device rotation?

I've noticed that most consumer-friendly Android and iPhone fitness apps have two interface modes - in portrait mode the user gets more detailed information, but when the user turns the device to ...
0
votes
1answer
29 views

Panning around center view in iOS

This is a bit of a continuation of my last question, but I'm at a loss as to how I should approach this. I have a center view that is dynamic and changed via three options panels. An example of this ...
0
votes
1answer
18 views

Mixing code-generated view controllers and storyboards

I've got a huge storyboard with lots of views defined. Now I created an additional view (and it's view controller) completely in code. How do I use that new, code-generated view in a storyboard? To ...
0
votes
1answer
22 views

WEPopover does not work with UIViewController != UITableViewController

I use WEPopover (https://github.com/werner77/WEPopover) to display popovers on iPhone. Unfortunately it does not work if I use a general UIViewController for the contentViewController of it. - ...
0
votes
0answers
28 views

Adding UINavigationController to root UIViewController using addChildViewController

What I want to do is have a root view controller that manages the base view of my application and then add a UINavigationViewController (with its own view controller stack) to that view controller ...
0
votes
1answer
40 views

UIViewController pass float value to UIView method

I have a ViewController with a HandlePan method: -(void)handlePan:(UIPanGestureRecognizer *)gestureRecognizer { UIView *piece = [gestureRecognizer view]; [self ...
0
votes
1answer
32 views

Adding UIViewController messes up screen orientation

I started with a GLSprite sample app (source code), then added a UIViewController by adding UIViewController *vc = [[UIViewController alloc] init]; vc.view = glView; self.window.rootViewController = ...
0
votes
1answer
28 views

How to disable pan mode for certain view controllers in the MFSideMenu class?

I'm using the MFSideMenu from github link in my project. It's working, however I would like to disable it in a certain viewcontroller. I added this in the viewcontroller but it doesn't disable the ...
0
votes
1answer
16 views

viewcontroller with a uinvaigationcontroller when pop up does not show the navbar

I'm using storyboards with this. On the storyboard I have a "mainpage" uiviewcontroller that has a button which when tap will call another uiviewcontroller (choosewinner) to pop up. But this ...
0
votes
0answers
14 views

UIViewController adding child with incompatible orientation

Introduction I'm having a container view controller having as a child a backgroundViewController and a overlayViewController that can be presented animated (similar to modal transitions). The ...
0
votes
0answers
15 views

Using Cocos2D Dynamic Texture as background for View Controller

I have a dynamic texture I created with CCRenderTexture. I would like to use it in the top half of one of the View Controllers in an app. Currently I have: One app with a ViewController that ...
-4
votes
2answers
45 views

'dismissModalViewControllerAnimated:' is deprecated

I know that this question has already been asked, but how do it fix the problem referring to this line -(void) achievementViewControllerDidFinish:(GKAchievementViewController *)viewController { ...
0
votes
1answer
42 views

How do I add a UIViewController?

I have a GLES game, it has no standard UI elements. It is based on the code from GLSprite which contains a UIView and an AppDelegate (full source code on github ...
0
votes
1answer
26 views

ECSlidingViewController problems with topview animation

I'm using ECSliding and I have this problem! In my project there are this files: InitViewController (ECSlidingController) FirstViewController (UIViewController) SecondViewController ...
0
votes
0answers
7 views

rotation and containment api

I have two view controller, A and B. A is meant to support only Portrait when instead B can support landscape. I'm displaying B using the containment api. [self addChildViewController:child]; ...
0
votes
2answers
19 views

iOS Change Story Board

My iPad App has two storyBoards - FirstStoryBoard and SecondStoryBoard I have a single ViewController I notice that Under Project > Targets > Summary there is an option for specifying the ...
0
votes
0answers
19 views

Relaying appearance method calls in custom container view controller properly

I'm following Apple's guide to build my own custom container view controller. It seems to work just fine out of the box, except for one irritating problem. How exactly do I specify at which time my ...
0
votes
2answers
75 views
+50

ViewController load methods called when view disappears?

I've got the following code in a viewController. I've got a NavigationController on the view (which is the child view - the code for the parent is working fine) What happens is when I select an ...
0
votes
1answer
30 views

Is it ok to keep multiple child view controllers associated with a parent UIViewController even when their views are not visible?

Scenario: I have a set of objects. I wish to display them using a UITableView when the device is in Portrait mode, and in UICollectionView when it is in landscape. To accomplish this, I want to use ...
0
votes
1answer
11 views

Set up view controllers like Find My Friends iPad app

I want to set up my view controllers like the Find My Friends iPad app. Based on what I've found so far, I believe that I need to: Use a container view controller Make the tab bar controller the ...
-1
votes
2answers
59 views

TableView on UIViewController with array information [closed]

Hi I am trying to use a tableview on my uiviewcontroler on my .h I put this code: @interface SecondViewController : UIViewController <UITableViewDelegate, UITableViewDataSource> { IBOutlet ...
0
votes
1answer
13 views

How save properties of the UIButton

I have two ViewControllers. I insert one UIButton with IBAction on the first ViewController. When i push on the button with set name "PLAY" after pushed i can see "STOP" - it's work great. But when ...
-1
votes
1answer
45 views

How make UiView displayed on top? [closed]

I have two UiViewControllers. I need to be UIView with UiButton and UISlider displayed on top. Also i already read any topics about this...but it's not work. Also i tried code: UIView *yourSubView ...
0
votes
3answers
44 views

how to do the same button for three screens?

I have some trouble. So i have AvPlayer and UIButton with play/stop. Also: I have three UiViewControllers. I need that when I click on the first button on the first UIVIewController on the second ...
0
votes
1answer
36 views

iOS presentViewController is not working right

As part of my updating my apps to replace the deprecated presentModalViewController with presentViewController, I did some testing. What I found was disturbing. Whereas presentModalViewController ...
0
votes
0answers
27 views

Scrolling is not working in viewcontroller?

iam working on iOS 6.1 but i have to develop app for iOs 5.0 i have following controlls in my view controller iOS 5.0 when i change the orientation iam not able to see the lower part even iam ...
0
votes
3answers
42 views

what type of view controller is this?

and how do you create it? - the popup one in the middle I would lie to use something like this for my game (in the main menu).
0
votes
1answer
19 views

Determining whether viewWillDisappear is called because child modal appearance or not

I have a UIViewController, ViewControllerA that is presented as a modal view controller from a RootViewController class. ViewControllerA then presents another modal controller class, ...
0
votes
2answers
34 views

Get EXC_BAD_ACCESS error after adding a viewcontroller'view as subView to another viewcontroller's view?

In my application I have two view controllers.First Viewcontroller is the rootViewController of the application window. when The Button in First ViewController is clicked I add the view of the second ...
0
votes
1answer
25 views

How to get the previous viewcontroller that pushed my current view

The home page of my app has UIButtons, btnIncome and btnExpense. Pressing on this buttons pushes IncomeVC and ExpenseVC respectevely,which are two UIViewControllers with UITabBar added via xib. The ...
0
votes
3answers
58 views

Custom initialise subview added from storyboard

I have a subclass of UIViewController that I want to add from the storyboard. So I'm using what seems the standard methodology: SubViewController *svc = [self.storyboard ...
1
vote
3answers
59 views

How do i check my viewcontroller is displaying now or not?

I want to write my viewcontroller status into a plist (something like what my viewcontroller is currently displaying, or that I moved to another view from there), so that when I check my plist I can ...
0
votes
1answer
37 views

Depth First search in Objective C iphone

I would like to do a DFS in objetive C. Given the root node which is a view controller and this view controller has an array of children which are view controllers as well. Each of these children ...
0
votes
3answers
34 views

Adding textfields in uiviewcontroller

Is it possible to create on a viewcontroller, textfields just by cliking on a button (number of clik on button = number of created textfields)?
0
votes
3answers
60 views

How make static view on any viewcontroller in Xcode?

I Have interesting question. I have two screens, I need that would be the third screen elements (buttons, label) are static and do not change when you move from one screen to another. . So MAIN ...
1
vote
1answer
44 views

UIViewController is not opening in storyboard?

In my login page when I check the server output to see if it's "false" or not, if it's not false I add this code for moving to main viewcontroller class but the below code is not working for me. ...

1 2 3 4 5 119