Tagged Questions
The viewcontroller tag has no wiki summary.
7
votes
3answers
1k views
Difference between AppDelegate.m and View Controller.m
Could anyone tell me when we use the AppDelegate.m and AppDelegate.h during iPhone programming ? I have used only the ViewController.m and ViewController.h for basic learning. I just want to know ...
4
votes
2answers
354 views
How return a value from view2 to view1 when using navigation bar
I am New to the iPhone Development. How can i carry a string value from view2 to view1 when using navigation bar. I have no problem in carrying string values from view1 to view2 to view3 to....by ...
3
votes
4answers
493 views
UIScrollView prevents touchesBegan, touchesMoved, touchesEnded on view controller
I am handling touches for a couple of my UI components in my view controller (custom subclass of UIViewController). It has methods touchesBegan:withEvent:, touchesMoved:withEvent:, and ...
3
votes
1answer
127 views
Cocoa : How to use NSNib several times independently
I've asked how I can make a custom view repeat itself into several separate copies and have been told that I should use NSNib or NSViewController. I have a custom view in an nib file, whenever a user ...
3
votes
4answers
309 views
iOS : 2 Buttons both call the same view controller. How do I find which one was clicked?
The title says most of what I'm looking for:
I have 2 buttons on my main menu that both call the same view controller. Depending on which button was clicked the view controller behaves a little ...
3
votes
2answers
141 views
Can I skip creating a separate pointer when setting my viewController?
Why do I need to create a pointer just to allocate memory and then release it immediately?
In other words, can't I just do this:
self.viewController = [[HelloWorldViewController alloc] ...
3
votes
2answers
96 views
What goes in the View and what goes in the View Controller?
I am new to programming for the iPhone and this will be my first question here. I have experience with different languages like php/java/c++.
My question is about ViewControllers and views in iOS.
I ...
3
votes
1answer
288 views
How can I update a view in the iPhone every time just before the view is displayed?
I have an application which has 7 tabs with associated views and view controllers. I need a way to update each view when it is selected. I have searched and searched, but cannot find a way to do ...
3
votes
2answers
574 views
How to resume view stack of iphone application
We are implementing one web based application in iPhone. if i answered the incoming phone call my application is relaunching once again instead of resume the application to the state where it last ...
2
votes
1answer
944 views
Difference between presentModalViewController and presentViewController?
In iOS 5 SDK, there're two methods of UIViewController, presentModalViewController:animated: and presentViewController:animated:completion:.
What's the difference between these two method?
The ...
2
votes
1answer
324 views
How can I send Button Event - UIControlEventTouchUpInside
In my simple program I have a problem with button. Button is a subView of a view and view is a subView of myViewController.view.
This Button is created dynamically but it's action doesn't work. How ...
2
votes
2answers
184 views
How do I use one xib with multiple view controllers?
In my program, I have a UIViewController subclass "MyViewController" and two subclasses of that view controller.
I want them all to use the same xib so I initiate them as
SubClass *SC = [[SubClass ...
2
votes
2answers
524 views
UIModalTransitionStylePartialCurl half page
I'm displaying an UIViewController by the following way:
MyViewController *myVc = [[MyViewController alloc] initWithNibName:@"MyViewController" bundle:nil];
[myVc ...
2
votes
3answers
117 views
iphone view controller / memory management
i'm a little bit confused with memory management in view controllers.
Lets say i have header file like this:
@interface MyController : UIViewController {
NSMutableArray *data;
}
@property ...
2
votes
1answer
130 views
How to change view layouts when orientation changes?
I have a view controller with some elements, like 3 UIViews on the side.
When I change the orientation, I want them to move down to the bottom instead.
How should I achieve this? Should I have two ...
2
votes
1answer
58 views
Copying a working app and removing and renaming things to make a new app?
I now have a bunch of finished apps. This new app that I'm making has the same structure, a couple tabs less. Can I save time by copying the project folder and somehow 'unhook it' from the previous ...
2
votes
1answer
288 views
Spring MVC -> dependent on URL display welcome page
I have a Spring MVC application (version 3.0.5.RELEASE) and I have this in my mvc-config.xml:
<mvc:view-controller path="/" view-name="welcome"/>
So requests to "/" are forwarded to the ...
2
votes
1answer
115 views
rewriting an iOS app to work on both iOS and Mac— how to organize controller code?
I have an iOS app that I am rewriting to work on both Mac and iOS. I have my views working reasonably well, but everything is static at the moment.
What do I typically do with my view controller ...
2
votes
0answers
119 views
How unload a ViewController class when switch to other view
How can i unload a viewController class when i switch to another view, so the class file won't run in the background anymore?
Thanks for help!
2
votes
1answer
800 views
IPhone UIView:Is it possible to enable userinteraction only on subviews?
I created a viewcontroller that displays a button which is used to slide a view onto the screen. The idea is to place for instance three such viewcontrollers onscreen, resulting in three buttons at ...
2
votes
1answer
2k views
Inter-ViewController parameters passing in iPhone programming… how to?
I read: http://stackoverflow.com/questions/2363777/iphone-how-to-pass-data-between-several-viewcontrollers-in-a-tabbar-app and was wondering what is the difference between
[[UIApplication ...
2
votes
3answers
565 views
How can I pass information between 2 different View Controllers?
This is a simple question:
I have 2 different view controllers, and each one has its own data stored in its .m file.
I want to take a value, for instance, an integer value (int i=3;) that is declared ...
1
vote
0answers
48 views
How do I change viewcontroller with segmented control in iOS SDK4.2 (storyboard)? need sample code
I found this great sample code about 'Switching Views with a UISegmentedControl'.
http://redartisan.com/blog?page=2
(sample code link : http://github.com/crafterm/SegmentedControlRevisited)
but ...
1
vote
2answers
56 views
Understanding View Controller Nesting in iOS
Ive been tearing my hair out over the last couple of days trying to understand this one seemingly basic concept of iOS development:
If I want to have two or more View Controllers displayed and ...
1
vote
2answers
134 views
Switching between view controllers
I have three view controllers. I used the flipsideproject template and then added another view controller.
There is a button on the first view controller that goes to the second view controller. ...
1
vote
0answers
71 views
Overriding viewDidAppear: method
I would like to override viewDidAppear: method in category to get in console current view controller.
#import "UIViewController+Additions.h"
@implementation UIViewController ...
1
vote
0answers
68 views
Calling “[self.view release];” stops memory leak?
I'm quite new to Objective-C, and whilst I think I understand the basics of reference counting, I'm not understanding some of the behaviour I'm seeing.
In Instruments, I've noticed that I'm leaking ...
1
vote
1answer
231 views
viewController appearing black when appearing
Hi All I'm new to iOS development and am currently having an issue with something, I'm trying to make a login form appear modally if a user is not logged in.
I'm using NSUserDefaults to store an id ...
1
vote
1answer
98 views
iAd View vs. custom ViewController
I try to integrate iAd to my App.
I have a class SwitchViewController (: UIViewController) which deals with all the
custom ViewControllers & Views I have in this app.
When adding the View as ...
1
vote
2answers
66 views
Combining TabBar and Navigation Controllers Question
So I have everything working how I want to...kinda...however I think I'm going about it the wrong way and would like to make sure I do it right from the beginning. So I'll explain what I have right ...
1
vote
1answer
66 views
How to get the return value of viewcontroller & do a NSString compare?
I am a new iOS developer. I am trying to figure out how to take the return value from a viewcontroller and do a string compare to identify the type of viewcontroller. My code will hopefully make ...
1
vote
0answers
113 views
Subclass UIViewController and UINavigationController
Here is my problem:
ViewControllerA is a subclass of BaseViewController
ViewControllerB is a subclass of BaseViewController
If ViewControllerA pushes to ViewControllerB everything works fine.
The ...
1
vote
3answers
155 views
iPhone: Display image at its original size
I am trying to set frame for imageview to original size of image and display it in center of view. I have written following code for this but image still appears in whole screen! Suppose image size is ...
1
vote
2answers
83 views
Iterating over core-data passed to a view
I am passing data to the view using this method:
nextViewController = [[AfricanSwallowViewController alloc] initWithNibName:@"AfricanSwallowView" bundle:nil];
((InstructionsViewController ...
1
vote
3answers
119 views
Switching view controller in viewdidload method
I am developing one iphone application in that i want to switch view controller by checking userdefaults. so i did the following:
NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults];
if ...
1
vote
0answers
175 views
injecting UINibExternalObjects to an self initialzied ViewController
I want to navigate from one ViewController to another. As part of this I want to
pass the ViewController I want to navigate to some information. I encapsulated the
information into an Object that I ...
1
vote
3answers
87 views
several questions about obj-c (delegate, viewController, simulator)
i had several questions about objective-c, could you help me understand it? Here they are :
why do we use sometimes :
self.myView.delegate = self; ?
There is the same thing with the Ipad and ...
1
vote
5answers
211 views
How to change label in ViewController when app enters the foreground
i want to change a label in my view controller when the app enters the foreground....:
SalaryAppV4AppDelegate.h
@interface SalaryAppV4AppDelegate : NSObject <UIApplicationDelegate, ...
1
vote
1answer
730 views
iOS - UITableView Pushing URL to UIWebView in Different View Controller
new to this site, but my head is absolutely killing me after trying for the past few hours to fix something that I know has to be insanely simple.
Short story:
I have a UIViewController with a ...
1
vote
2answers
242 views
dismissModalView vs popModalView
What is the difference between dismissModalViewController and popViewController? In what situations would one work better than the other?
1
vote
1answer
163 views
How to let drawRect get the value of points from ViewController and draw?
I created a class newView from UIView and aim to draw a quadrangle. the 4 coners (ClipPointA, ClipPointB, ClipPointC, ClipPointD) of the quadrangle are supposed to read value from ViewController.
...
1
vote
2answers
294 views
How mvc pattern is implemented in iOS user interface? (view-based XCode temlpate)
I'm new to iphone development. There's a lot of books on this topic available. But most of the beginner's guides are mostly concerned with Interface Builder usage and lack the information about ...
1
vote
2answers
784 views
UIView setCenter problem
I'm having a lot of trouble doing something very simple. I have a viewController and a subViewController, both with views loaded from nibs. For clarification the parent view is sized 1024 by 748 and ...
1
vote
3answers
161 views
How to add navigation controller to windowbased app
I have a window based app. I added two viewcontrollers and one Tabbarcontroller to that. Now I want to navigate each viewcontroller to next view. I tried but can't find the solution. Can anyone please ...
1
vote
0answers
379 views
How to “preload” view controller without actually pushing it?
Background:
I've got a free app that is ad-supported. The basic idea is that when the app is launched, ad content (HTML) is downloaded from the server in the background, and only if successful, then ...
1
vote
1answer
186 views
How to use a tableView as a selector to send values to another viewcontroller?
I'll try to explain this as best as i can, but i appologize if it gets too confusing - I've been stuck on this problem for many hours now.
In my application i have a search screen where the user will ...
1
vote
1answer
318 views
xcode: Where is dummyViewController instantiated in the default “View-based Application” template?
If I create a New Project in xcode, then choose "View-based Application", the delegate and view controller class templates are generated automatically. Here's a snippet from DummyAppDelegate.h
@class ...
1
vote
3answers
144 views
Is it reasonable to isolate iPhone/iPad event handlers in separate .m files and then #import them in the viewcontroller @implementation?
Total newbie here on iPhone/iPad development, so forgive me if this seems like a strange question...
Given that most objects (or group of objects) in a view within a viewcontroller need to have an ...
1
vote
4answers
2k views
Passing array between view controllers?
I really need some more help!
I am trying to pass an array from one view controller to another. I think the latter being a 'child' view controller?
My code is as follows:
MainViewController.h:
...
1
vote
1answer
74 views
Tab bar Application
Greetings of the Day,
I am having issue in my app.Actually, in my app i am having five tabs bars each having navigation controllers each having table view, on clicking cell of table view another ...