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
8 views

ViewDeck sizing of left UIViewController

I am using ViewDeck to power the sliding UI in my iPad app but i'm hitting a few problems. I want to size the leftViewController to a specific size regardless of the rotation. The code I have to ...
0
votes
3answers
31 views

iOS UITableView height issue when 3.5 inch simulator display

A UIViewController with a navigation bar, a toolbar and a admob banner. Below is the code to calculate the height of the UITableView by removing the height of the admob banner, navigation bar and ...
0
votes
0answers
5 views

video capturing in iOS with remote control

we developed a hardware remote control that has a receiver that plugs into iPhone 4 30-pin plug or through lightning adapter in iPhone 5. The code for app was written by 3-rd party developer who left ...
0
votes
1answer
20 views

I have interesting view when application running

I used .xib Here design page Here when application run When I open others view and back view like this. I want to be like this when run first
1
vote
0answers
9 views

Xcode/IB multiple container views pointing at single view controller?

In the interface builder you can drag out an "Container View" which links up to an different view controller. I've used this functionality several times, works great. Is it possible for several of ...
2
votes
1answer
31 views

What does addChildViewController actually do?

I'm just dipping my feet for the first time into iOS development, and one of the first things I've had to do is implement a custom container view controller - lets call it SideBarViewController - that ...
0
votes
0answers
15 views

UIActivityViewController does not work on iPad on iOS 6.1.3

The following code does not work as expected on iPad iOS version 6.1.3. An empty Action Sheet is shown. UIImage *postImage = [UIImage imageNamed:IMAGE_TO_SHARE_ON_SOCIAL_NETWORKS]; NSArray ...
-1
votes
1answer
36 views

How to automatically redirect to another view controller when a user opens a view controller iOS

I have some extremely confusing code for a Tab Bar that my predecessor wrote and I cannot understand. Instead of adding my view controller to the tab bar, I would like to just re-direct to it from a ...
0
votes
2answers
31 views

Two or more collection view in one single view

I would like to have two or more CollectionView in one single view (UIViewController "delegate/sourcedata"). I have already done one and it works fine, but I would like to have another one in the ...
0
votes
1answer
14 views

iOS 6, StroryBoards: Updating UITextView on main scene after modal segue

I try to update UITextView text on parent scene after returning from child scene where an user can input the content that should appear after navigating back. Parent scene: Modal segue -> Child ...
0
votes
2answers
47 views

How to load UIView from UIViewcontroller?

I have created a view and now I want to load that view from another viewcontroller without allocating the view. Is it possible or not. please clarify me. I am doing like following 1)Added UIView in ...
0
votes
1answer
17 views

Custom View in a View Controller

I have a map view inside my view controller. It displays a view of pre entered coordinates. The map view does not occupy the entire screen, I have other items on the view controller. I want to edit ...
0
votes
3answers
46 views

Back to Previous ViewController

I have a tabbed application project in Xcode and I'm trying to create a back button for one of the viewcontrollers in order to go back to the previous view. You can get to this viewcontroller from 2 ...
1
vote
1answer
38 views

How to swipe down a UIViewController from another

I don't know if the title is explicit so i'm going to explain it more here. I have at the moment an UIViewController, and a UIButton linked to a IBAction that fires another UIViewController. I would ...
0
votes
0answers
13 views

touch events happen only once

I have the following code implemented in a UIViewController initialized with google maps, the idea is to try and catch the touch events in and use them to draw on the map this is my code: - ...
0
votes
0answers
4 views

opening a UIView in modal invokes touchesEnded in the calling UIViewController

I'm having a UIViewController that is calling a UINavigationViewController that has a UITableViewController and it has a push segue to a UIViewController (in the stack there are 3 views: ...
0
votes
2answers
31 views

UIview doesn't load with viewdidappear

I have a tableview project which has a view, everything that I do in this view is controlled by "viewdidappear" method. I added a new UIview which has "lines.h" and "lines.m" files. I use this view ...
1
vote
0answers
16 views

AQGridView - Orientation change in ExpanderDemo

I just started checking AQGridView and new to iOS too in the source example ExpanderDemo the orientation is working fine for the first View but as i click any cell and next upcomming AQGridView does ...
1
vote
0answers
32 views

custom container view controller state preservation

I need to create custom container viewcontroller with label and 2 states A and B(each state presented by child viewcontroller and swap each other). Both children viewcontrollers instantiates when ...
2
votes
3answers
88 views

What is the better approach to communicate between parent and child view controllers?

It may be a simple way, but I need some guidance from those who have been familiar with iOS. If a parent view controller want to send one particular message to all child view controllers, what is the ...
2
votes
3answers
43 views

iPhone SDK: Call method from UIImageViewClass to ViewController

I have this function in my .m ImageView Class file - (UIColor*) getPixelColorAtLocation:(CGPoint)point { How do I call this function from my view controller? I have tried ` - (void)viewDidLoad ...
1
vote
2answers
67 views

Static View For Every View Controller in iOS

I am creating view controller with a view. The view is named as timerView and it contains a timerLabel. Label is being updated by NSTimer after every second. Its working fine. But what I want to do ...
0
votes
4answers
38 views

Present UIViewController in another one

There is iPad application with UINavigationBar and UITabBar. I would like to show another UIViewController (clearColored with red UIView as a subview) with "blocking" UINavigationBar and UITabBar ...
0
votes
0answers
17 views

pass data back using protocols and delegates

Hi I have two viewcontrollers, GameFavorites pushes SelectFavorites, and I all I want to do is show on NSLog that I am passing data back once I am in SelectFavorites with a button. Here is my code ...
0
votes
1answer
24 views

returning to a uiviewcontroller without navigationcontroller

my application has a UIViewController that isn't wrapped in a UINavigationController from it I call different UINavigationControllers each representing a state in a state machine. calling these ...
0
votes
1answer
21 views

Animate Vertical Scrolling Text

I'm implementing an About view controller in an app that shows modal when a button is tapped. On the view controller I have a UILabel and some text displaying in there. I would like to animate the ...
0
votes
0answers
23 views

adding a Back Button on a root navigation view

My setting screen is a single UITableViewController contained in UINavigationController, I'm opening it from a UIMapView that is not contained in the same UINavigationController with this command: ...
-2
votes
1answer
17 views

How to move master view to the right side in UISplitViewController [closed]

I want Master View to be the right side and Detail View in the left side in UISplitViewcontroller, How can i do ?
0
votes
1answer
48 views

Adding a UITableView in a UIviewController

I have a UIViewController (ViewControllerA), and in this UIViewController I would like to add a UITableView subview that occupies part of the screen (named TableLoadGroupMembersViewController). I have ...
0
votes
2answers
24 views

iOS - UIViewController - Runtime error when overriding a getter in UIViewController subclass chain

iOS newbie here. I have a class that is a subclass of UIViewController called CommonVC. It does not have a scene directly associated with it. It declares a property in the .h file: @property ...
1
vote
2answers
40 views

iOS 6 pushing viewcontrollers in a modally presented viewcontroller

In my app i would like to create a tutorial to show how to use the app. For that i presented a viewcontroller using navcontroller.presentViewController and it has a form appearance. I would like to ...
0
votes
3answers
91 views

How to show UIViewController in other UIViewController?

This is typical question and possibly duplicated, but.. There is iPad app which has UINavigationBar and UITabBar. I have created a button on navigationBar which must show appinfoViewController. When ...
-1
votes
2answers
29 views

How do I disallow a viewcontroller from progressing to the next view in my app?

I have a multi-view application and in my storyboard I have graphically defined a view (view1: log in username/password view for instance) that will segue to another view (view2: welcome view for ...
0
votes
2answers
43 views

Parent and child view in Container V

I have a project in iOS and I am trying to modify the same to use in another project. The project is working fine but when I try and Embed the Side View Controller in a tab bar controller it is giving ...
0
votes
1answer
22 views

UIImageView and Auto Layout in Code

I'm trying to use programmatic visual constraints to display a label and a button next to one another. However, the UIImageView used as the button's background is making the intrinsic size of the ...
1
vote
1answer
29 views

Accessing a method on a views superview - What is UIViewControllerWrapperView?

My problem is a follows I have a UIViewController subclass which holds a UISegmentedController and four tableviews that I layed out in interface builder. @interface MultiTableHoldingView : ...
0
votes
1answer
28 views

How to open files in a UIWebView?

I just make a file browser for iOS, I just need to know how to open any kind of file in a UIWebview. I think the webview can open any kind of file, that's because I chose to use a UIWebView to view ...
0
votes
0answers
11 views

ECSlidingViewController swipe gesture issue on View Controller

I'm using ECSlidingViewController for my app for the slide out menu and having a imageview on my all view controllers. It works perfectly but when i to the right when the menu controller(Slide view) ...
0
votes
2answers
41 views

How to load a UIViewController in landscape mode if its parent is in Portrait mode?

I want to load a ViewController in landscape mode from a portrait parent. Parent is got fixed for portrait, it wont change its orientation, however the child view controller whichever is got pushed ...
-2
votes
0answers
17 views

more than one screen Xcode

first off all, sorry for my bad english. i had two view controller and one class for each one, but when i tried to change from screen one to screen two, show me a problem, before i change the second ...
0
votes
3answers
37 views

Gap when changed of viewcontroller

I'm implementing an application, in which i use several view controllers. But i've found a strange behaviour of my app' when it changes of viewcontroller. Let me explain : We are in a first ...
0
votes
0answers
9 views

Save Image to my plist to load hear in other view

I want to save my image import from the Photo library or my camera in a plist (Data.plist). Thank you in advance //I have hear my code to save the name of person write in my text field // ...
0
votes
3answers
47 views

why self.view.frame and self.view.bounds are different when the devices rotate?

I want to do some layout change when the devices rotate. So I implement - (void)willAnimateRotationToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation ...
0
votes
0answers
23 views

Facebook iOS SDK 3.5.2 crashes without any info

I just moved over to the 3.5.2 SDK, and my code, of course, does not work anymore. I made a little test app, and can get this working under one circumstance but not the other (the one I need). ...
0
votes
1answer
28 views

IOS UIController hierarchy and memory use

Have general question about IOS Controllers: On start ios created default UI View Controller and then I can call presentViewController or use Segue to open others Question is if previous controllers ...
0
votes
1answer
57 views

NSArrayM insertObject:atIndex:]: object cannot be nil'

After a lot of search, and tries with some solutions on stackoverflow, i didn't find any answer which could solve my error : I have a UIViewcontroller, who's name is WorldViewController. In this ...
0
votes
1answer
26 views

Open specific ViewController from push notification

On my xcode project I have a some views and a tab bar controller. When I open my app the first view comes up. I have also a server that sends to the app some push notifications. I use on ...
0
votes
1answer
19 views

For-Loop to quick to present View Controller

i want to add multiple passbook passes by running through a array with URLs. The problem is that the loop counts faster than the view controller can present. Here s my code: NSArray *passURLArray ...
0
votes
0answers
10 views

Returning to view after logging in to Facebook, screen unresponsive

I am using PKRevealController (https://github.com/pkluz/PKRevealController) for a sidebar menu (similar to the Facebook app). Everything is behaving well, but when I logout via my settings page, and ...
0
votes
3answers
67 views

Access to a variable from another view controller

I'm working on a project in objective C where i have to modificate some variables which are in a view controller from uiviews. So i've tried somethings like this : ViewController.h : @property ...

1 2 3 4 5 122