Tagged Questions
0
votes
1answer
21 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
13 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
1answer
29 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
20 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
38 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
0answers
31 views
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 ...
-1
votes
2answers
56 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
0answers
25 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
53 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
35 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 ...
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
vote
1answer
17 views
Switching between storyboards/view controllers
So I'm making an iPad app for the very first time and right now I have one view controller with its buttons displayed on the storyboard and everything and what I want to do is when I click on a ...
0
votes
3answers
29 views
Update table view after delete core data in child view
I need to update table view in MainView controller with UITableView, after deleting item in DetailView controller with button for delete, using core data.
Core data structure: ...
1
vote
0answers
29 views
Changing duration of UIviewController transition
I am using this code to change between one view controller to another:
UIStoryboard *storyboard = [UIStoryboard storyboardWithName:@"MainStoryboard_iPad" bundle: nil];
UIViewController *lvc = ...
0
votes
2answers
55 views
For the first time I click on a cell, it is taking some time to load the next view controller. Why?
I'm initializing the view controller in the didSelectRowAtIndexpath method, as follows,
GuideViewController *gViewController = [[GuideViewController alloc] initWithGuideline:obj withTitle:@"" ...
0
votes
1answer
46 views
How to change a label on one UIView from another UIView
Within my iPhone app I have 2 UIControls a ViewController.h and a selectionScreen.h.
The selectionScreen is set as so
@interface selectionScreen : ViewController{
I am trying to change a label ...
0
votes
1answer
34 views
Move view from UITableViewCell to Window and back to same cell
I'm creating an SDK where I have a view that performs various tasks such as expanding and flipping to not go into much detail.
In one possible use case, the user may place the view in a ...
1
vote
2answers
42 views
Method is not calling from UITableview?
I have a UITableView and in didSelect method i'm calling method of another class with parameter and when i click the row i want to open that class xib with corresponding paramter .But here when i ...
0
votes
1answer
69 views
Object became nil after view will appear
Following situation:
I got 2 views. On the firstview I m display Event data, on the seconde i can edit these data. If I switch to my seconde view and edit a value and return back to my firstview ...
0
votes
6answers
74 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
1answer
55 views
When should I use didFinishLaunchingWithOptions?
I feel like I should know this, but I don't and it always confuses me.
When browsing through sample code and tutorials, I will sometimes see AppDelegates that have a
@property UIWindow* window,
...
-3
votes
0answers
27 views
Add textfields by pressing button [closed]
is it possible to add textfields inside a viewcontroller by pressing a button .exemple txtfieldOne,textfieldTwo, textfieldThree , by pressing button I get , textfieldOne, ...
0
votes
2answers
32 views
One instance of navigation bar in every tab
I've been struggling this problem for several days. In my application I have tab bar controller with UINavigationViewControllers inside. I want every navigation bar in every navigation controller to ...
0
votes
2answers
74 views
view controllers: presentation, dismissal
Just for the purpose of learning some particular aspects of xCode, I am creating a simple app that has 2 functional view controllers. Each contains a button that can be pressed to switch to the other. ...
-1
votes
1answer
46 views
uitableview inside multiple view controllers
I have to 'repeat' a uitableview into 2 or more view controllers. Like using a uitableviewcontroller with its methods inside view controllers using the methods/delegates/datasources from the ...
0
votes
2answers
40 views
Manage uiview and uiviewcontroller
I created an uiview , that contained , many textfields , and I have an uiviewcontroller with xib file responsible for making signature .Is it possible to add this viewcontroller to my uiview in order ...
-1
votes
0answers
30 views
Split screen Interface (like Facebook, linked in etc) [closed]
Can anyone give me some tutorials how to make split view on iPhone, navigation Facebook or linked in like. I's like to use a few View controllers. When pushing a button it's switching to another view ...
1
vote
2answers
69 views
how to display various view controllers (each having its respective navigation controller) using storyboard ID
I'm working on my first app. Here's what I want to accomplish:
There will be a menu with several different options. For simplicity, assume this is comprised of UIButtons with IBAction outlets and the ...
0
votes
2answers
28 views
StoryBoard Issue
I have an issue that when I press a button to go to another view controller in a storyboard the system says this:
terminating app due to uncaught exception 'NSUnknownKeyException', reason: ...
0
votes
2answers
31 views
Resetting the rootViewController on a NavigationController
I am using the PKRevealController that gives the side menu functionality to an application.
I Have UIbuttons in the side menu and they trigger a view to be pushed on the navigation stack. However, ...
0
votes
1answer
42 views
How to recreate the UITableViewController's initializing behavior?
I am creating my own base class that will act as a UITableViewController replacement (let's call it IRTableViewController). Thus, I am subclassing UIViewController and I want to have the following ...
1
vote
1answer
35 views
Call Different Method Depending On The View Controller Selected
Its complicated to put in words but lemme give it a try. I have a MenuViewController that has an array with category names, tapping on the category rows in tableview instantiate a different view ...
0
votes
1answer
58 views
how to custom back button in storyboard
I create one application that has 3 ViewController with names : (ViewController,ViewController2,ViewController3)
in ViewController exist one button that is for checking file in document folder or ...
0
votes
3answers
58 views
Login Screen using Storyboard
I am new to iOS 5 and trying to write my apps as pure iOS 5 app using the new storyboard feature.
I have a start screen (Login Screen) so I do not want to use navigationcontroller because i don't ...
-1
votes
8answers
65 views
store UITextFields value somewhere for a short time
I have a viewController where people need to fill in some textfields. When people tap on the green spot they navigate to another view to make a little signature and then they come back.
The ...
0
votes
1answer
23 views
Running a WebView Request In Another View, While Displaying a Different View?
I currently have a main view and a login view. I handle authentication in my login view (javascript injection and web scraping) and then load my main view with the right content. The problem is that I ...
0
votes
1answer
83 views
UIViewController is dismissing automatically
I'm having a problem with a ViewController.
In hierarchy i have 3 ViewController:
Login
Grid
Profile
From Login to Grid, there is no problem. But when i'm try to go from Grid to Profiel, Grid ...
-1
votes
1answer
35 views
Iphone - not able to send data to server after loading next viewcontroller [closed]
I have 2 screens. Login screen which after successful login takes me to the next viewcontroller.But I am not able to send data to the server from the next viewcontroller. I connect to the server on ...
-4
votes
5answers
61 views
How do i get the size of a UIView from within the View Controller? [closed]
Inside the viewDidLoad method of a UIViewController:
NSLog(@"frame: %f %f", self.view.frame.size.width, self.view.frame.size.height);
With the device in landscape:
frame: 748.000000 1024.000000
...
0
votes
1answer
36 views
How to reload an object connected in xib
I have a UIViewController (myViewController) with a XIB file. In this XIB file, I have connected an other object UIPickerViewController (myPicker).
When my UIViewController is allocated, initialized ...
0
votes
1answer
62 views
Resizing full screen view inside UIViewController on rotation?
I added a webview to a UIViewController. I assumed that I could match it's size to the UIViewController's view, but soon realised that the UIControllerView frame was independent of the screen ...
0
votes
3answers
56 views
How do I call viewDidLoad Manually?
I'm having a slight problem with iOS. I am passing data back and forth between two view controllers using protocols and manually switching views. My problem is that when I dismiss the top view, ...
-2
votes
2answers
56 views
Applications are expected to have a root view controller at the end of application launch error [duplicate]
I have a problem,
I am using following code the application work fine.
Support *panoView=[[Support alloc] initWithFrame:CGRectMake(0, 0, 768, 1024)];
self.view=panoView;
Note: panoView is ...
0
votes
0answers
54 views
Any hints or ideas on how to print multiple images in ViewController?
I want to ask if there is a way to print multiple images in a ViewController because I have tried several methods and it only seems to print once.
I have created a for loop to loop 3 times in my ...
0
votes
1answer
25 views
How to set UISearchBar text before its view controller has appeared?
I have a UIViewController with a UITableView and UISearcBar in it. The UISearchBarDelegate is connected. Its called SCOrdersVC:
//SCOrders.h
#import <UIKit/UIKit.h>
@interface SCOrdersVC : ...
-1
votes
2answers
52 views
Bring container view to front
I have stacked a bunch of container views on top of one another and am hiding / unhiding based on user clicks elsewhere on the screen like below:
[self.childViewControllers[13] view].hidden = NO;
...
0
votes
2answers
39 views
Change the frame of a ViewController set in AppDelegate
I am using a controller to replace the traditional UITabBarController.
The one I am using is AKTabBarController.
Now All is working, but there is one stage where I want to remove it using a Gesture.
...
0
votes
2answers
90 views
Present ViewController with custom animation
I am presenting a view controller using the foll. code:
VC_B * b = [[VC_B alloc] init...];
[self presentViewController:b animated:YES completion:nil];
I am trying to animate appearance of the view ...
0
votes
4answers
104 views
UIViewController -dealloc method not called
I am working with Automatic Reference Counting.
I have a custom UIViewController subclass and whenever I call -presentViewController: animated:completion: or remove its view from the superview I ...





