Tagged Questions
0
votes
0answers
4 views
performSegueWithIdentifier and prepareForSegue
I have a UIViewController *vc1 with 4 buttons. Each button causes a push segue to another UIViewController *vc2. vc2 is shows some information based on which button was pushed. I pass the infomation ...
-2
votes
0answers
11 views
How to link to another view of storyboard Xcode
I have a login system created. It uses a user ID instead of username and password. I want to make it so when the login button is pressed, it opens another view controller in my storyboard. I already ...
0
votes
3answers
30 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 ...
-1
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 ...
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
35 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
30 views
XCode: iOS5 localization script - Exit code 1
i'm using the popular pythonscript ( http://code.google.com/p/edim-mobile/source/browse/trunk/ios/IncrementalLocalization/localize.py ) to localize my storyboards in ios5.
I did only some changes in ...
0
votes
1answer
21 views
xcode storyboard button object interfacing
This is probably a really dumb question, but how do I make a button call an event, and how can I make a variable with the data from a textbox?
I'm probably overlooking something really stupid, but ...
0
votes
0answers
20 views
Change “DONE” button color when playing Youtube video embedded in UIWebView
I am using UIWebView to display Youtube video. Everything works fine but I want to change "DONE" button color to my custom color when the Youtube video is playing. I have googled but not solved yet.
0
votes
2answers
48 views
Show alert view and stay on same view controller when cancel is pushed
I'm using the storyboard with 2 view controllers connected to each other with a segue. On the first view controller there is a button and if you click on that button it goes to the second view ...
0
votes
0answers
23 views
unable to retrieve html content from xml tags while parsing xml xcode
I am trying to parse an online xml with the following html formatting tag within the xml tag:
<synopsis>
<!--[CDATA[<p>
<span style="color: rgb(0, 0, 0); ...
0
votes
1answer
21 views
Code generated by storyboard
I tried to create a label in code, in my appdelegate implementation after finish launching with options.
(in the FinishedLaunchingWithOptions method)
However that did not work, nothing showed up ...
0
votes
0answers
20 views
greyed out link in outlet list of Connections Inspector
In the image below look on the right side in the "Outlets" section; the connection is from view to View and it is greyed out. I cannot delete it or alter it. I only saw this anomaly
while trying to ...
1
vote
3answers
43 views
How to show answers of a flashcard type programmed iPhone app between two arrays, xcode?
I'm trying to display questions in a viewcontroller using storyboards
and when the user clicks show answer. It brings it from view
controller to another. The other view controller just shows the
...
0
votes
1answer
68 views
Cannot open storyboard (com.apple.InterfaceBuilder error -1.)
After several developers were working on the storyboard in one of our apps, we are now getting this error when trying to open the storyboard in Xcode Interface Builder:
The document ...
0
votes
1answer
55 views
How do I change background color of storyboard in xcode 4.6.2
I am working with storyboards in xcode 4.6.2 I simply want to change the background color of the storyboard. Usually I would think (and according to tutorials) I just go to the inspector on the right ...
0
votes
1answer
34 views
Xcode 4 Storyboard (Storing Texts and Random Display in View Controllers)
I am new to apps building with the Xcode 4 Storyboard. I now stuck in figuring out
1. How to store a list of texts - short phrases (data) then,
2. How to display these texts randomly in the ...
0
votes
0answers
31 views
Top offset of TableView embeded in Navigation Controller in storyboard
I have custom TableViewController with plain style Table View and it is embeded in Navigation Controller. I use Refresh Control on the table view and Black Translucent style of the navigation bar and ...
0
votes
1answer
79 views
iOS storyboard: modal and push segue on the same viewcontroller
I have a sequence of ViewControllers (B, C, D, ...), children of a UINavigationController (A0), that you access sequentially (A0 -> B -> C -> D, ...).
I would also like to allow a ...
-1
votes
2answers
50 views
xcode: create tables with mixed content
I must create a table with five rows. The first row contains a label and switch button, the remaining 4 rows contain simply a label.
This table has not to be modified.
Then, I used a storyboard to ...
0
votes
0answers
30 views
Storyboard UIViewController Opens Blank (with UINavigationBar)
At some point in code I open a new ViewController in Storeyboard using this code:
[self performSegueWithIdentifier:@"FinishGameViewController" sender:nil];
In IB I connected these 2 controllers, ...
0
votes
1answer
24 views
Creating and loading views with storyboard
I am quite new to iOS development and thus new to the concept of storyboard as well.
As this seems to be the 'new thing', everyone should use, I thought I might give it a try as well.
I got a project ...
0
votes
0answers
52 views
Swipe Gesture Recognizer Limits?
I have a simple little game scoring app that I put out recently and found with some user user testing that some people were having issues in how to use it from the outset. So, I decided to add a few ...
0
votes
2answers
78 views
How to load a xib file from a storyboard?
I am new to iOS programming and I am working on a project which will use both XIB files and storyboard.
I have two modules in it basically. First module is made from XIB files which also runs ...
0
votes
0answers
50 views
Wrong presentingViewController when doing modal segue (using ECSlidingViewController)
I present signup view controller modally from login view controller. My initial view controller is login view controller and when I present signup view controller modally, there is nothing wrong, but ...
0
votes
2answers
43 views
Using the Storyboard
I am using the storyboard in xcode and have 2 View Controllers and linking it to each other. I have a photo button that brings up the camera on the first View Controller and I want to show and save ...
1
vote
1answer
75 views
How to load a storyboard from a XIB file?
I am trying to load a storyboard file from a XIB file when a button is clicked. So in the IBAction method I have called the following line:
- (IBAction)NextView:(id)sender
{
UIStoryboard ...
2
votes
2answers
56 views
Display items inside ScrollView on Storyboard
My problem is when i want to display multiple items inside a scrollview on Storyboard, i can't scroll to add more items because of the screen size of the View Controller. How can i get around this ?
...
0
votes
1answer
24 views
AutoLayouts, Contraints, UIView and re-sizing
I have attempted to search for AutoLayout, Contraints and several other items, but I can't seem to find an easy answer to what appears to be a simple issue. Below are two screenshots. The first one ...
0
votes
1answer
94 views
iOS mapview auto layout issue
Im creating an tab bar app with a storyboard.
Basically on the SecondViewController, I set up an MKMapView with a toolbar at the top for changing views etc.
I set that span and added an annotation ...
0
votes
1answer
63 views
iOS - Push Segue not working even with NavController
I'm trying to set up a basic "Newsfeed" function for an iOS app, with headlines in a TableViewController segueing into a simple ViewController to display the text of the selected story. I'm using ...
2
votes
2answers
50 views
Why a singleView application doesn't load a storyboard if a storyboard is added later to the project?
I created a new singleView application without storyboard (say FirstProject) and another single view application with storyboard (say SecondProject)and then added a storyboard in the application which ...
0
votes
1answer
67 views
How to move the views from a XIB file to storyboards in a project in Xcode?
I am new to iOS programming and Xcode. I have a project which is working perfectly fine with 5 viewControllers and XIB file. I have to add many more features in it (like Google Maps, iAd Banner and ...
1
vote
1answer
71 views
Using a CameraOverlayView with Storyboards
I am trying to use a CameraOverLayView with a UIImagePickerController using Storyboards in XCode.
In the storyboard, CameraViewController Segues to ImagePickerController, which has a CameraOverlayView ...
0
votes
1answer
70 views
Is UINavigationController needed for UITableView in a popover?
I have an iPad app (XCode 4.6, iOS 6.2, Storyboards, ARC), with 4 scenes and a navigation controller, all connected using segues. On the first scene, if the user taps on it, it will display a ...
0
votes
2answers
25 views
Segue use Inheritance class
Hi i want to replace with a segue so i can use view controller on my storyboard
1ViewController *viewController = [[1ViewController alloc] initWithSFTPConnection:connection];
...
0
votes
2answers
53 views
hide keyboard in secondary viewcontrollers when pressing background storyboard
I've been scourging the internet and saw several promising answers but none that worked for me. The problem I have is that I have many ViewControllers that I placed in Storyboard mode.
Lets say in ...
1
vote
1answer
29 views
Implementing a storyboard project into a XIB based project
So I have been working on a project in the most recent version of Xcode, I am NOT using storyboard, just standard nibs. However I found excellent source code for an RSS reader I would like to add into ...
0
votes
1answer
30 views
Xcode iPad storyboard
So I'm looking at an iPad Objective-C Xcode project's source code and I am new to this and having trouble figuring out what's going on.
So I'm looking at the file MainStoryboard_ipad.storyboard which ...
0
votes
1answer
21 views
Dynamic cells vs static?
I want to create a table view with text fields in the cells that are editable to the user. Like filling out a form. I want the text fields to have placeholders etc, and when tapping on the cell I want ...
1
vote
1answer
37 views
how to unhook in Interface Builder?
Simple Question: How can I unhook this:
I copy-paste a Viewcontroller between projects and IB do not unhook automatically -> that means I have two hooks between projects and storyboards.
0
votes
1answer
83 views
UITabBarController to UIViewController with inner UITableView
I apologize in advance for being a total noob with this question, but at least I'm trying right?
Here's my current setup. I have a storyboard setup with the following
UITabBarController -> ...
1
vote
1answer
39 views
Call Different Method Depending On The View Controller Selected
Its complicated to put in words but lemme give it a try. I have a MenuViewController that has an array with category names, tapping on the category rows in tableview instantiate a different view ...
0
votes
1answer
38 views
Storyboard white space at top in all model controllers
Am getting a white space at top in all containers. if I do a model transition that white space is clearly visible on top of all navigation controllers.
that space is around 20px.
How to remove this ...
0
votes
3answers
78 views
Storyboard won't make button action
For some reason I can't drag and drop from my storyboard button into my View Controller class.
All of the classes are named correctly, and I've tried logging out of my computer, shutting it down, and ...
0
votes
2answers
30 views
Anyone know how to fix a selector error?
I try to run my project in XCode and I get this error:
'NSInvalidArgumentException', reason: '-[UIView setDataSource2:]: unrecognized selector sent to instance 0x88497f0'
All of the ...
-4
votes
1answer
48 views
Detailed storyboard with 3 issued with [closed]
as implemented in the Xcode of a detailed storyboard with 3 issued with Tableview depending on id.
Row in table hav Name and Id(int value)
If id= 1 i need load OneViewController
If id= 2 i need load ...
0
votes
1answer
19 views
iOS internationalisation not showing proper language
I'm trying to internationalize my app, with xcode 4.6, but unfortunately the app keeps running in the same language in which I started building it (italian).
I have added the extra language ...
0
votes
0answers
17 views
How can I use MJPopupView with storyboards?
I am trying to implement a xib based project into my stryboard project, I have been looking for a while and found this: Using KNSemiModal or MJPopUpView with storyboard but I dont know where to put ...





