0
votes
1answer
42 views

Return for the first view after I'm on the fifth view of an iOS application in Xcode

I'm fairly new to xcode, and am creating a single view application with five views (xib files). I am not using navigation controller or storyboard for two reasons. If I use Storyboard, I am forced to ...
0
votes
1answer
61 views

Android switching views

Ok, so I have worked the fading out content from within an id (thanks to http://stackoverflow.com/a/4570977/971392). I have the following function: public void switchView(View view) { ...
0
votes
0answers
50 views

How can you make an actionSheet in xcode? I need the (.m) code

i need the code to put into the .m file for a actions sheet that has 2 options, one is to cancel and the other is to go to another page/view. I have looked on youtube but all i see is people showing ...
2
votes
3answers
325 views

Swap/switch/exchange backbone.js views in place?

I'm implementing view/edit Views in backbone.js for a contacts manager. The web suggested creating a Contact class with child views called ContactView and ContactEdit. The problem is, these need to ...
1
vote
1answer
41 views

switch case difficulties - upon completion of the case statement I want php to carry out the commands past the break and out of the switch

I have this code: function logout() { $_SESSION = array(); //destroy all of the session variables session_destroy(); } // defaults to welcome view unless a different view is requested $view ...
0
votes
0answers
149 views

how to switch view controllers in xcode with code and not using storyboard or xib files

I can't find any help on switching view controllers with code but there are lots of ones that have information about using storyboard and using xib files for older versions of Xcode.
1
vote
1answer
108 views

How to detect when a Switch is slided, not clicked

I managed to capture when a Switch View is clicked so the main activity responds accordingly; but whenever I slide it instead of clicking it's as if nothing has happened. How can I detect this?
0
votes
1answer
318 views

Switching views in storyboard after executing code in xcode

I made a log-in screen that once you press the button to log-in and it authenticates the user name and password. What I want to do it switch to a different view after the authentication is completed. ...
0
votes
1answer
663 views

switch store view with href

I'm trying to switch magento store views by url/href. I created a default store view, with a cms where a block gets loaded which contains a landing page where you should choose your language. After ...
0
votes
1answer
141 views

RoR if .. else statement

I am trying to return a value back to my view, though not having much success error undefined local variable or method `schedule' for # model def win_lose_tie if schedule.for.to_i == ...
1
vote
0answers
95 views

Switching view from uipopover with landscape orientation

as usual I'm stuck again with a very simple problem but quite stressful here. just a simple case : I'm about to switch between two views but only with landscape orientation(left&right). actually ...
0
votes
2answers
86 views

Presenting ViewControllers Modally

I am Making a word game and I need some help with the navigation. This game starts in a menu, from that menu you can click 'create game' which would open the 'GameViewController'. in this ...
0
votes
5answers
821 views

Rails switch case in the view

I want to write a switch case in my view : <% @prods.each_with_index do |prod, index|%> <% case index %> <% when 0 %><%= image_tag("#{prod.img}", :id => "one") ...
0
votes
1answer
329 views

Trigger events when switching views

It is easy. Suppose I have two views: firstView and SecondView. firstView is the ROOT view. I load secondView from firstView: secondView *secondViewController; secondViewController = [[SecondView ...
1
vote
1answer
1k views

Switching custom views programmatically (pushing and popping)

In iOS, my views work individually but I can't switch between them. Now after a lot of google-ing around I've fond that the navigation based app would work great with the stack for views. The problem ...
0
votes
2answers
1k views

Hide keyboard when switching to another view

I have 2 views, login and register. I did [currentTextField resignFirstResponder]; before I navigates to the other view. The problem is, the keyboard is only hidden after it switched view. Which ...
0
votes
2answers
226 views

Update TextView with each key press

What I am trying to do is update a TextView with each key event - basically copying the contents of the EditText to the TextView. For some reason, it's not working. Here's the code: ...
0
votes
1answer
419 views

Keyboard hide when switching views problem

I have 2 views: a login page and a register page. If a keyboard is shown when the user navigates to the other view, I want the program to dismiss the keyboard on its own. But upon navigating back to ...
0
votes
3answers
470 views

Switch case statements causes fatal error in my Android App

I am building an Android app using a pile of switch statements to switch between views. Everything was going fine until I added a block of cases that cause a fatal error when the app is starting up. ...
0
votes
1answer
142 views

How to switch to another local view from CCoeControl object in Symbian

My GUI application has two views, First view has a ListBox control - Derived from CCoeControl - and from this object I want to switch to the second view, How can I do this ? In other words, When user ...
0
votes
3answers
550 views

unload View after calling presentModalViewController?

I have some view controller which I call with the following method: myViewController *myView = [[myViewController alloc] initWithNibName:nil bundle:nil]; myView.modalTransitionStyle = ...
0
votes
3answers
8k views

Android, switch/case on View with programmatically generated views

Normally, when I switch/case my views onClick, I have no problems because they were defined in the XML and have ID's so I use: switch(v.getID()) { case(R.id.someButton): { // do something } ...
0
votes
1answer
264 views

How to switch view in Symbian C++?

I'm just trying to switch between Test1View and Test2View on Symbian S60 3rd FP2 edition in Symbian C++ language. I have some components on both of them, but Test2 is for another operations than ...
0
votes
1answer
464 views

iphone switch views with buttons, SecondView over FirstView

to all im newbie developer and trying to create my first iPhone app, sorry my english not good i trying to make 2 views and the second view display over first view, but the second view is not full ...
1
vote
4answers
295 views

Switching Views in iPhone SDK?

How come this won't switch views for me? When I click the button it does nothing... -(IBAction)howtoplayButtonClicked{ howToPlayViewController = [[HowToPlayViewController alloc] ...
0
votes
1answer
38 views

IPhone - ViewSwitch Problem

HI everybody, I've got a problem with the view-switch. When first switching into the landscapeview everything seems to be ok, but switching back into the portraitview my view is scaled in the wrong ...
0
votes
2answers
409 views

iPhone Switch views _KILL ! Problem

i have a problem with switch view between 2 views with nib files ! here my code . my first page goes to page 2 ! but at page 2 i cant back to first page ! my app go out .. here is my code : from page ...