Tagged Questions
0
votes
0answers
6 views
Access files owner view controller instance from subclass (using SWRevealViewController)
I am using SWRevealViewController (https://github.com/Joan-Lluch/SWRevealViewController) and am trying to access the revealViewController instance that lives within the files owner view controller of ...
0
votes
1answer
8 views
access property of file's owner from child object
I am wondering how to access a property that lives in my File's Owner class from another class object that lives within the xib.
File's Owner of my xib is a ViewController with a property x.
UIView ...
1
vote
6answers
72 views
Dimiss two ViewControllers one after the another:iOS
I am trying to dismiss two view controllers one after the another,
In my first view controller I have kept uploading feature, which when completes the current view controller is dismissed.
Now, ...
0
votes
2answers
40 views
Initial load of UIView not from segue
I am using ECSlidingViewController with two view controllers. The 'detail' view is shown on initial load, a button on the 'detail' view menubar then shows the 'master' view which is a UITableView, ...
0
votes
1answer
30 views
ViewController added as a subView getting released too soon
I am trying to optimize the code in my app. I have quite a few ViewControllers which all use a common "keypad".
I wanted to extract the keypad into a separate ViewController and then include it into ...
-3
votes
2answers
134 views
iOS 6.0+ autorotation for youtube embedded video
I want to only support vertical orientation throughout all the view controllers of my iOS app. However, I embed a YouTube video in one of my view controllers, and when that video is selected to take ...
1
vote
1answer
40 views
Push heavy UIViewController with many UIButtons to UINavigationController
I have a UIViewController with a lot of UIButtons (each with a custom UIImage), and when I push that UIViewController to the UINavigationController, it does not show a smooth animation.
So basically ...
0
votes
3answers
67 views
How to refresh UIViewController programmatically?
I have a ViewController in which the user selects a card (a custom UIButton) out of a UIScrollView. I have intercepted the touch event selecting the card and identified it, and then removed it from ...
1
vote
2answers
88 views
iOS - Presenting a UIViewController inside anther UIViewController
I dont have a very good understanding on the topic, so please bear with me
I am trying to display a UIViewController inside another UIViewController. I feel like there aren't enough examples out ...
0
votes
0answers
16 views
Resizing textView according to iPad orientation at application launch
Hi I'm developing an app for iPad. I need to resize a textView at launch, depending on the orientation. The initial dimension of my object is CGRectMake(0, 0, 768, 698) (which is the one I need for ...
0
votes
0answers
66 views
Add UIViewControllers View as a subView of another UIViewController view
I have a UiView called TestView which I have added as a subView of my NumberViewController.
On start of my app, My rootViewController is PaperViewController, this has some UIButtons which I have ...
0
votes
0answers
16 views
How can I present a ViewController after a movie has finished playing?
I want to play a movie when the app starts running. For that reason I am calling playMovie at the viewDidAppear method. After the movie finishes, I want to present automatically a different View ...
2
votes
2answers
83 views
How can I “enable” scrolling up and down in a UIViewController
Ok, I have a navigation Controller that manages a drilldown tableview, when it reaches to the end it show a list of products, when you choose a product it will show a detail view (UiViewController).
...
1
vote
1answer
70 views
iPad, iOS6 very long delay between viewWIllAppear and view appearing on the screen
I'm working with a fairly complex storyboard based iPad app. My workflow is as follows A collection view pushes another view, which presents another view modally.
The 3rd view which is presented ...
0
votes
2answers
71 views
Overriding loadView causes viewDidLoad and loadView to fire everytime a VC appears
My view heirarchy sits on several custom "root" UIViewController subclasses. I'm trying to set a custom self.view for one of my root VC subclasses. There, I am doing:
...
2
votes
4answers
78 views
Unable to pass data to other viewController ios
I have a little problem, because I can't pass data to another view controller.
-(void)barcodeData:(NSString *)barcode type:(int)type
{
mainTabBarController.selectedViewController=self;
...
0
votes
1answer
131 views
ios6 EXC_BAD_ACCESS(code=1, address=0x0) error
I am getting a EXC_BAD_ACCESS(code=1, address=0x0) error (the address equals is another not 0x0 but I assume a number related to my project).
This error occurs when going "back" to the main VC in a ...
0
votes
0answers
21 views
Going back using a NavigationController crashes when accessing the same ViewController
Below is the hierarchy in question.
The "ViewController - MyConnection" in the top left is my main ViewController. I implement a NavigationController system. From the main VC a user can go to the ...
1
vote
3answers
158 views
viewDidLoad not called
Everything is in the storyboard using pretty standard layout.
UISplitViewController with a detail view controller of UINavigationController which loads up my custom UITableViewController. Only the ...
0
votes
0answers
103 views
How to invoke rotation in iOS 6 with UITabBarController
I have an app using an UITabBarController and I want to support landscape view for one of the tabs.
I currently have a category set up that does:
- (BOOL)shouldAutorotate
{
return ...
1
vote
1answer
59 views
Best implementation for transitionWithView in Navigation Controller when the user tap BACK
I have 2 UIViewControllers inside a NavigationController.
The first one, A, has just an UISearchBar on top of a tableView, as the tableHeader.
The second one, B, has a view in the upper part of the ...
-1
votes
2answers
44 views
Using Storyboard With View Controllers
I'm new to iOS development, but I know the coding. I want to do ios app which has 6 or 7 views. I want to use one storyboard and 6 or 7 views. I have to pass data between these views. I need a ...
0
votes
0answers
29 views
How To Load A UITableViewController in SideView Of A UIViewController?
I'm trying to load a UITableViewController on the left and right views of a UIViewController. I have some code which lets me swipe to left of the controller, but all i see is a black view.
Here's the ...
0
votes
1answer
134 views
presentViewController is disabling all removeFromSuperview messages in a UISplitViewController
Here is a visual representation of the UISplitViewController:
I'm trying to present a UIViewController (myVC) that's a subview of a UIView inside the DetailViewController of a ...
0
votes
0answers
33 views
setViewControllers does not set the correct orientation based on the topViewController
I use a UINavigationController to present content in my app. I keep my controllers in a separate dictionary and, upon user interaction, I load the navigation controller with the proper ...
0
votes
3answers
86 views
Why is rotation not working for iOS 5 when it is working for iOS 6
I have a app that has 5.0 as deployment target and 6.1 as base sdk and it all works great on a iOS 6.x device/simulator. But on 5.x my views are not rotating. I have googled around and found some ...
0
votes
0answers
48 views
Adding an info button to a navigation bar
Currently my project consists of 5 tab bar controllers, each their own navigation controller, the setup is mainly done within the app delegate and all of this is done through code, not nib files. I ...
1
vote
2answers
157 views
Presenting a modal view manually from an actionsheet
I'm pretty new to iOS dev, and I've been reading a ton on this problem, but still can't figure it out.
I have a button in an action sheet that is supposed to activate and present a slide-up modal ...
1
vote
1answer
18 views
Change controller in container at run time
So, I have a view container in my iPad app. Based on a selection the user makes, the view in the container needs to change. How is this done? Can I link several view controllers to the same container ...
0
votes
1answer
31 views
Call ViewController's object from subclass
I'm developing an iOS 6 app for iPad. I have a Subclass and I'd like to call a ViewController's object from it. How can I do it?
0
votes
1answer
164 views
Prevent autorotate for one view controller?
My app can autorotate but I need one of the views to only show in portrait mode and don't know how to achieve this.
I tried this (among other things) but the view in question still rotates:
// ...
6
votes
2answers
166 views
ViewControllers with TextViews in UIPageViewController
I was trying to learn UIPageViewControllers and hit an Issue which I couldn't resolve.
This is what I tried to do:
Steps:
I simply created 2 view controllers and a page view controller in
...
0
votes
1answer
99 views
Trouble with new View Controller called from a UITextField Xcode
In the current App that I am writing, I have a UITextField that has a link in it. So I want to call a new View Controller instead of Safari. I can have it open in Safari, but I don't want the user ...
2
votes
1answer
925 views
IOS 6: present a modal view controller
i have a tab view controller and a login view controller in xcode 4.6 with iOS 6.1 sdk
When the app start is loaded the "View Controller 1". How can i show the login view if the user is not logged?
...
0
votes
2answers
304 views
UICollectionView inside UIView
I am trying to implement a UICollectionView inside a UIView, but I cant find out how to do it. There is a lot of tutorials on how to use UICollectionView with a UICollectionViewController, but not how ...
0
votes
3answers
56 views
Put different backgrounds in a View Controller
I am doing my first steps creating applications in iOS, so maybe I am asking a dumb question.
In a View Controller, I put some buttons and text fields to make different actions. To improve the ...
0
votes
0answers
32 views
Linking between xib files
I am working on my first MultiView project and this project contains two xib files. The first xib file is a tableView that has names of Quizzes on it. When you click a name it takes you to the second ...
0
votes
0answers
51 views
Terminating app due to uncaught exception 'UIViewControllerHierarchyInconsistency' in iOS 6
My code was working fine in iOS 5, but now crashing in iOS 6 when i assigned a custom view controller. It gives me following error
* Terminating app due to uncaught exception ...
1
vote
1answer
78 views
UINavigationBar jumps 20pixels during transitionFromViewController
In trying to attempt to use Apple's UIViewController containment I have encountered a problem with animating the transition between two UIViewControllers.
Here is the set up... I have created a ...
0
votes
1answer
105 views
Switch between UIViewControllers with UISegmentedControl
I want to switch between 3 views with a UISegmentedControl but I'm stuck.
I'm using storyboards and ARC and I got this so far:
I have dragged the Segmented Control into my VC and then I made an ...
0
votes
0answers
47 views
It works…but I sense it could be done a lot better (delegation)
I've been trying to get my head around this for ages, which frustrates me all the more because the program is doing what I want it to. However, I sense I don't fully understand it and therefore feel ...
0
votes
1answer
680 views
Passing data between two views with Xcode 4.6
I am studying Object-C and I am writing a test app to learn.
This is an easy app, where in the first View i press a button, go in the second View (I used a curl animation)fill a text field and then ...
0
votes
1answer
43 views
Getting the value of a delegate upon clicking back?
I have two class files. ViewController and ChooseServerView. A user clicks a cell within the ViewController class which pushes to the ChooseServerView. When a user makes a selection in ...
1
vote
2answers
120 views
Custom transition between view controllers in ios6
I have a transition class that has two views in the same view controller. This works ok. I want to apply the same transition to a second view controller. I'm not getting any exceptions, but it isn't ...
0
votes
1answer
346 views
why is my viewcontroller not in the window hierarchy?
Using storyboards, MainMenuViewController presents Number1ViewController modally with this:
-(void) goToNumbers {
[self performSegueWithIdentifier: @"seguetonumbers" sender: self];
}
Then ...
1
vote
1answer
191 views
Dismissing a presented UINavigationController in iOS6
In my root UIViewController I present a UINavigationController. The UINavigationController ultimately pushes another view (let's call it MyViewController). How can I dismiss the entire ...
1
vote
2answers
155 views
Force Landscape view in IOS6
I know that there are lots of threads about how to force an orientation in IOS6 but none of them seems to work for me so now I need some help figuring this out.
I have a navigation based app that has ...
0
votes
2answers
161 views
How to deal with storyboard instead of xib file in such case?
I have an example where I have animation when the app starts. At the start an image is displayed, then moves from right to left, then disappears. Below is the code I have.
- ...
0
votes
1answer
163 views
UIPageViewController direction only forward
The goal is to create a UIPageViewController that can only navigate forward. I am using a data source to provide the content for the UIPageViewController. The direction is set to ...
0
votes
2answers
41 views
Creating properties for iPhone items
I am trying to write simple app for iPhone. I have storyboard populated with components, e.g. text field. Now in the ViewController.h I want to create properties by dragging and dropping the ...

