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
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
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
1answer
27 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
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 ...
0
votes
0answers
21 views

Cocos2D and Custom Segue

I'm using Cocos2D in a StoryBoard enabled app. I could initialize Cocos2D in a view using the great tutorials of Tini Tim at http://www.tinytimgames.com/2012/02/07/cocos2d-and-storyboards/. When I ...
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, ...
1
vote
3answers
30 views

how to access parents of view controller and properly dismiss self and self.parent?

In MyViewController, I ask the user to select a person from address book: (on a button click) peoplePicker = [[ABPeoplePickerNavigationController alloc] init]; peoplePicker.peoplePickerDelegate = ...
0
votes
3answers
34 views

Implementing another table view in a UITableViewController ios

I need to add a new table view to my UITableViewController which will includes a different data and design. the above prototype cells is the new table view I've added in storyboard, and the main ...
0
votes
1answer
40 views

Resizing for 3.5 and 4inch screen

wondering if anyone can help, I've always struggled with resizing for both screen sizes.? What is the best way to do it? At the moment with the 4 inch screen all my layout is perfect then when I view ...
1
vote
2answers
80 views

Hovering UITableViewController over a UIViewController on iPhone not displaying cell content (e.g. FB notification view)

I am trying to create a hovering UITableViewController over a UIViewController. I have managed to open the TableView over the ViewController. (Picture) When first loading the view the data is loaded ...
0
votes
2answers
38 views

Loading ViewController data into the model

I am working on an app which would collect data from six different View Controllers and then create a PDF summary of the data collected. I know of two ways to aggregate the information from the ...
0
votes
3answers
60 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
69 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 ...
-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 ...
0
votes
1answer
24 views

Linking button to another viewcontroll (uiwebview)

can anyone help? I have two different view controllers in my storyboard. First controller has buttons which I want to connect to a second controller which is a uiwebview, for it to open a website, I ...
-4
votes
5answers
63 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 ...
-2
votes
1answer
44 views

add another UITableViewCell to view controller [closed]

I have a table view controller, and I have a UITableViewCell which includes a list of information, I want to add another UITableViewCell which includes for example fast news. When I run my ...
0
votes
1answer
37 views

UIImagePickerController loading bar/pop up after use

I am currently working on my iphone app. While I'm taking a picture with UIViewController, I work on it (some rotation, transformation, whatever), then I show the result of the transformation, right ...
1
vote
0answers
32 views

UIImagePickerController no overlay on preview/skip preview

I am working on an iPhone app that makes use of the camera overlay view of the UIImagePickerController. However, the problem I am running into is that my overlay is still on the screen when the ...
0
votes
1answer
33 views

how to convert UIView code into UIViewController with Nib in ipad

I have found tutorial which I want to implement in my view controller but the code is written in UIView so how to convert UIView code into UIViewController it can work here is my code #import ...
-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 ...
1
vote
2answers
109 views

Is there an iOS sliding menu controller working like UITabBarController?

I found some iOS sliding menu controllers (like Path 2.0 , Facebook iOS), such as ViewDeck https://github.com/Inferis/ViewDeck, ECSlidingViewController ...
-1
votes
1answer
195 views

UI blocks while pushing view controller on to navigation controller

I have just moved my iOS 5 project to iOS 6 environment (since Apple made it mandatory to support 4-inch device compability) and now I am having a bit of a problem while pushing a UIViewController on ...
0
votes
1answer
17 views

pass uigesturerecognzer data to parent controller

There is a master view controller with this method - (void)revealGesture:(UIPanGestureRecognizer *)recognizer{ } which works when I send it a mesage froma child viewcontroller using a swipe: ...
0
votes
1answer
33 views

what determines the initial value of CALayer.position?

I have a simple test app that has one view, one view controller, and all of this is instantiated via a standard storyboard. When I run my app and pause on a breakpoint in my view controller I can see ...
0
votes
2answers
42 views

Auto Rotate Dynamic UIViewcontroller

I have a scenario where Im creating the UIViewcontrollers dynamically and adding a UIView on top of it and pushing it to the navigation stack. This is how I have created my view controller ...
0
votes
2answers
47 views

Updating label on the main thread is not working

I'm trying to update a label while different tasks are proceeding. I searched and used different options and endup using this way but it still doesn't work: [processStatusLable ...
0
votes
1answer
32 views

Navigation Based App : only one landscape UIVIewController

still new to objective C and iOS i'm facing a new problem. That's quite simple, i needed only one UIViewController in my app to be in landscape mode so i built my app this way : One custom ...
0
votes
4answers
65 views

How i can navigate from View Controller to another View Controller once clicking on button?

I am getting this exception when I am trying to move to another view: Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'Could not load NIB in bundle: 'NSBundle ...
0
votes
1answer
113 views

How to call UIView method from another ViewController in iOS

I have implemented freehand sketch tutorial from http://mobile.tutsplus.com/tutorials/iphone/ios-sdk_freehand-drawing/. I need to call its - (void)drawBitmap; - (void)drawBitmapGreen; methods in ...
0
votes
2answers
69 views

Get download progress from different ViewController

I have a VideoListController. It has list of videos with download button. When I press the download button, the control is transferred to DetailViewController. In DetailViewController, I am using ...
1
vote
1answer
38 views

Disable click on background UIViewController

I am loading a ABPeoplePickerNavigationController on the click of a UITableViewCell. self.peoplePicker = [[ABPeoplePickerNavigationController alloc] init]; self.peoplePicker.peoplePickerDelegate = ...
0
votes
3answers
74 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 ...
0
votes
1answer
36 views

need to popviewcontroller but keep the current view hidden

I'm trying the below code to hide the current view and pop to the previous viewcontroller's view but all i get with this code is a black screen on the view.. can't do anything on that... relationship ...
-1
votes
0answers
82 views

pop and push a viewController through appDelegate in iOS

I have a problem to pop a view at specific place in an iPhone application. When I pop the the view to a specific place then that view controller disables all the buttons controls events. Please help ...
-1
votes
1answer
38 views

presenting ViewController Programmatically in Storyboard

i'm trying to present viewcontroller programmatically in storyboard, i'm using the below mentioned code but it's not working, doesn't give me any response... - (void)buttonPressed { NSLog(@"called"); ...
7
votes
1answer
227 views

What happens under the hood when we do presentViewController?

Given the below code self.view.backgroundColor = [UIColor yellowColor]; MyViewController *myVC = [[MyViewController alloc] initWithNibName:@"MyView" bundle:nil] myVC.view.backgroundColor = [UIColor ...
0
votes
4answers
45 views

how to determine view controller

I have three view controllers A, B and C. Both A and B present view controller C. How can I get to know which view controller presented view controller C? P.S: I want to hide/unhide some buttons once ...
0
votes
2answers
46 views

Multiple view for same tab bar item

i'm sorry for my english. I'm trying to develop my first app and i have a tab bar controller connected to some view controller. In one of these i have some images and when i click on image a ...
0
votes
2answers
47 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 ...
0
votes
1answer
21 views

Nibs view in other nibs subview with coreplot, cpgraph takes super view as its attribute

I load a A-viewcontrollers view to other B-viewcntrollers sub view (UIview), A is having graphs with coreplot and initialize CPTgraph. When 'A' is initialize all the property of it like.:array or ...
0
votes
1answer
64 views

How to force rotation of a UIViewController

I've a UINavigationController wich contains some UIViewController... All those UIVienController should be only in Portrait mode. But in only one of those UIViewController, I should ...
1
vote
1answer
97 views

iphone development: how to set a property of an another viewController then reach it

Lets say I have two viewcontrollers ViewControllerA and ViewControllerB when I press a button from viewcontrollerA it is pushing to viewControllerB. However before pushing I want to set a property of ...
0
votes
3answers
102 views

Push UIViewController to UITabBarController

I have UITabBarController, which has four tabs. When moving from another UIViewController to one of the view in UITabBarController, bottom Tab Bar item is not appearing and also there is space at the ...
0
votes
3answers
128 views

Objective - C How to manage multiple views with View Controller iphone

I am new in developing iOS apps. I am trying to develop a multiple views app. My doubt is how to manage a multiple views app with View Controller, I mean, I do not want to use Navigation Controller ...
0
votes
2answers
65 views

Variating view controller based on global variable

I'm currently developing app, that has signing process involved. It is tab-bar app, but for simplicity I'll use example with only 2 tabs. Home and Settings. In home, user is presented his home ...
0
votes
1answer
35 views

EXC_BAD_ACCESS when starting new view with tableView

I'm trying to initiate a new viewController with a tableView inside but I keep getting EXC_BAD_ACCESS errors. .h #import <UIKit/UIKit.h> @interface GeneralInfoViewController : ...

1 2 3 4 5 53