Tagged Questions
The multiple-views tag has no wiki summary.
7
votes
2answers
20k views
iPhone Development - Complex application using multiple views/xib/nib
I'm new to iPhone development, and multiple views (xib or nib) are really confusing me. This is what i'm trying to achieve...
View with Tab Bar (Tab 1, Tab 2, Tab 3)
Tab 2 View (Navigation ...
5
votes
4answers
8k views
Implementing a splash screen in iOS
I'm quite a newbie in Cocoa, Objective-C and iOS developpement.
I'd like to implement a View that is just a splash screen and only last for a short time before routing to the main view. Do you have ...
2
votes
1answer
98 views
How do I determine spring-mvc different view resolvers based on different domains?
I have a Spring-MVC project which needs to have 2 views for example: views/xxx/... views/yyy/..., I wondering how to determine which view i gonna use based on the domains for example: xxxcom, yyycom.
...
2
votes
1answer
396 views
On iOS with OpenGLES how to have multiple views?
On iOS if I want to overlay two views and then blend from one scene to another.
E.g.: From menu of a game to the actual game. Have menu first, then on click ("start game") load game view and have a ...
1
vote
1answer
45 views
Adding multiple views (& nibs) to a single view controller
I need to implement several views on a single iPad screen. I am creating several classes and then corresponding xib files. I have one main (root) view controller which will manage all the views for ...
1
vote
2answers
236 views
Problem with NSManagedObjectContextObjectsDidChangeNotification in two different views
Good evening everyone,
before explaining my problem, I should give you some explanation on my project first :
I have a simple Coredata model with one entity called "Conversation" and the other one ...
1
vote
1answer
675 views
Tabbar Nav app, allowing one view to rotate while others do not
I have a tab bar application in which i have 3 diffrent views each with there own view controller.
In the tab bar code i have this, to handle rotation.
#import "RotatingTabBarController.h"
...
1
vote
2answers
2k views
Switch between OpenGL ES View and UIKit View controllers
this is my question.
I'm developing a game on iPhone with OpenGL ES. I began my development using the Xcode template OpenGL ES Application, with one EAGLView, etc.
My menu view and game view use the ...
1
vote
1answer
181 views
MVC: does anyone know a multi view design for MVC?
I have a system that need two representations of the same model,
and for simplicity i want to use one model, and not keep multiple models - because than my system will suffer from translation errors ...
0
votes
1answer
80 views
Binding in multiple views to ObservableCollection of selected items (MVVM, SL5)
I'm using MVVM with Silverlight 5. What I want to achieve is to select items in a ListBox in one view (e.g. ListView.xaml) and display the selected items in a ListBox in another view (e.g. ...
0
votes
0answers
18 views
Multiple views in landscape and portrait but loading differently
I want to display different view in landscape and portrait.
When the application starts, it shows the landscape view but not the portrait view.
After changing the orientation to landscape it works ...
0
votes
1answer
33 views
multiple views in landscape and portrait
I want to implement my app in both landscape and portrait with two different views. When my app in landscape it shows one view and in portrait it shows the second view. It is possible. But when my app ...
0
votes
1answer
60 views
Mutiple Views for a Doc in MFC MDI application
I would like to have multiple views for a document in my MDI MFC application. In order to do that, InitInstance of my App class has following code
m_pMainTemplate = new ...
0
votes
3answers
98 views
How to implement NSUserDefault to access through multiple views
I'm trying to share strings and integers throughout multiple views for a final project in an introductory iOS development course, around 50, and am wondering how I would go about doing this... I know ...
0
votes
0answers
41 views
Android: Both images and text in MapView overlay?
I've followed the guide on how to create overlays on MapViews and have done so successfully. Adding text that will be displayed when you click on the icons on the map is really simple.
However, in ...
0
votes
1answer
36 views
Android - Mulitple listeners on a single view with the ability to pass off events to other views
I have a Gallery that contains a ScrollView. I can scroll through the text in the ScrollView with a vertical swipe as is standard. However, I would like the ScrollView to also listen for horizontal ...
0
votes
1answer
128 views
iPad/iOS: Managing multiple full screen views?
My app needs to switch between a couple of full screen views. These views are toggled by buttons in a custom overlay menu.
There are no tab bars or navigation bars visible. The transition between ...
0
votes
3answers
88 views
How To Create Multiple Views Without A Navigation Controller?
I am trying to create multiple views in my view-based iPhone app in Xcode 4. I have followed many tutorials and read many articles but none of them have worked. I figured out that they require a ...
0
votes
1answer
76 views
Question about multiple views in iPhone App Development
Is it possible to create a viewcontroller that could handle 5 views?
And is it possible to implement a different button on every view to make a transition to root view?
So my idea of the app is when ...
0
votes
0answers
47 views
2 Views in subclassed SimpleCursorAdapter dependend on cursor-content
I'm working on an application, who have a ListView which display some names and addresses.
Sometimes, I haven't a name to the associated address.
So I want to subclass the SimpleCursorAdapter, that ...
0
votes
2answers
385 views
Loading Tab Controller View in Window Based iPhone App
I am learning how to create apps with multiple views using the Window-based application template. I am trying to implement a tab bar but when my view loads, it is a blank. I realize it could be an ...
0
votes
1answer
285 views
CSplitterWnd with two panes : left pane is CTreeView, Right is CFrameWnd : Not able to set different views in Right pane
I am trying to implement a classic Windows Explorer kind of Application,
CpliterWnd has two panes : Left pane is CLeftTreeView : public CTreeView
Right pane is CRightPaneFrame: public CFrameWnd , ...
0
votes
1answer
84 views
Multiple views on main view
Hi sir i have a Screen with tab bar and navigation bar.
also having buttons on tab bar.
i want new view when i am clicking on buttons on tab bar...
i want that tab bar and navigation bars as common ...
0
votes
1answer
50 views
iPhone Views Question
So I have a question about views on iPhone. I have an app based on the Tab Bar template in XCode. One of the tab views is a TableView. In that table view, when a user selects one of the cells, I want ...
0
votes
1answer
304 views
CoverFlow multiple Views
Good Morning at all,
i have a big problem in the following code and no solution, so i hope someone could
help me:
- (IBAction)goToChart {
[rootViewController switchViews];
}
// Implement ...
0
votes
2answers
1k views
opengles view switching problem
I´m trying to make simple game using OpenGLES.
I have two EAGLViews(menu and game view).
Each view has its own viewController. Initializing of the views is done by initWithNIBName method of the ...