Is a class used by WPF and Silverlight to control animations, or a new iOS 5 scheme for managing view controller navigation
0
votes
3answers
20 views
How to link to another view of storyboard
I have a login system ready on the view when the app is opened. I made it so when the login button is clicked, it says correct, but how do I link it to another view in my storyboard? Help would be ...
0
votes
0answers
3 views
UIToolbar with Prev/Next utilizing multiple textfield in multiple sectioned tableview storyboard
I need help with adding logic to get the static table view cell section index.
I have a plain static UITableView with 2 sections, in each section there are 2 cells with textfields.
I implemented a ...
0
votes
3answers
56 views
Force viewDidLoad to run again on start
In my app there is only one "scene".
All the UI is loaded from the storyboard but the user can then change this by changing fonts, colours, positions, etc...
I'd like this to reset when the user ...
2
votes
0answers
26 views
Encapsulation when moving from xib to storyboards?
With xibs, you could call different initializers:
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
// Fetch Note...
// Initialize Edit Note View ...
0
votes
3answers
37 views
Possible to have all cells segue to same view controller?
Instead of control-dragging every cell to the other view controller, is there a way to make them all segue to the view controller more easily? I would also need to add a Segue Identifier to the ...
0
votes
0answers
7 views
iOS: ContainerView with ModalView and Two Children. Performing Segue
Below is the image of what I'm trying to accomplish.
We have a containerView. The child view has a navigation controller.
There are 2 children for the containerView. Child #1 and Child #2
Between ...
0
votes
2answers
23 views
UITableView bottom cells are hidden below screen
I am building a table view using a storyboard as part of a navigation controller flow. Everything works well as long as all cells can be shown on one page. The problem is that if there are more cells ...
1
vote
1answer
38 views
In WPF I can't see whats wrong with my C# Storyboard and DoubleAnimation
Im attempting to create a storyboard in C# not XAML to control scaling of an image, so i can easily alter the ScaleTransform.ScaleX and ScaleTransform.ScaleY values in a DoubleAnimation.
So far I ...
0
votes
0answers
4 views
How to show detail in two consecutive UIview
I've a little issue in my app. my app is based on core data using magical record.
In my first view ( a tableview) I have all the data, when one of the cell is tapped, it open the second view (detail ...
4
votes
3answers
58 views
Why does my WPF Translate Animation stop before completing?
i wrote an WindowExtension that should provide a simple Translate animation to a window. But this Animation does always stop before it gets to the target coordinates. Can anybody give me an advice ...
1
vote
1answer
24 views
Hide cell after transferring view controller through segue
After changing the text through a segue, I tried to hide a cell through the segue. This did not work. Here is my code:
-(void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender{
...
0
votes
1answer
29 views
Automatically double an iPhone view on an iPad without a user doing it [duplicate]
When a user uses an iPhone app on the iPad, they have the option to double the view to fit the iPad. My application has over 100 view controllers and 800 segues. Is there an app delegate api or line ...
0
votes
1answer
34 views
Segue to another view controller with label connected crashes
I am using a storyboard to connect two different view controllers. When I click on the cell I want it to segue into another view controller (what it usually does). But anytime I link a link a label ...
1
vote
0answers
26 views
container view is cutting off elements that fit properly in storyboard
The view controller on the left has 2 containers. The top one embeds the view controller on the right. As you can see, the VC on the right has been automatically sized by Xcode to fit in the top ...
0
votes
1answer
20 views
Dragging from a tableviewcell to a viewcontroller not auto segueing
I am trying to use Storyboards on this project. I cntrl drag from a static tableview cell to a new viewcontroller select push.
When I run the app and click the tableviewcell, which I dragged from in ...