Interface Builder is a visual design tool used to create user interfaces for Apple's Mac OS X and iOS platforms.
0
votes
1answer
21 views
How to navigate page view controller at content view controller
I'm trying to implement an questionnaire app.
I have an UIPageViewController attached to the main view controller called QuizPageViewController.m. other controllers such as buttons are placed in ...
0
votes
1answer
18 views
iOS - Interface Builder - Adding elements as subviews to a UIView
In interface builder I have a viewController and It's main view (view A). I have added another UIView (view B) onto the main view and now I would like to add more elements to view B but I want Xcode ...
0
votes
2answers
36 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
1answer
35 views
Strange behaviour when laying out subviews
I am creating a UI that the user can page through multiple views by using a UIScrollView. I create the UIView objects in code and add them to UIScrollView. I use the code below to create the views.
...
0
votes
1answer
26 views
UIBarButtonItem triggers action only when pressed for long enough
I have a few simple UIBarButtonsItems(no customization other than changing style, color and alpha). Everything was working perfectly fine for some time. But now I need to press BarButton for a long ...
0
votes
1answer
18 views
iOS - Interface Builder - subviews not inheriting superview alpha
In Interface Builder, I have laid a UIView on the the main view of a ViewController.
On that UIView I have added a number of elements so that when I reduce the alpha of that view to 0,
all of the ...
0
votes
1answer
48 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 ...
1
vote
1answer
45 views
An IBOutlet is not initiated
I'm trying to make a tableview with customized cells.
I've created 2 files .m and .h that refer to my class CustomCell.
Here is the code :
#import <UIKit/UIKit.h>
@interface CustomCell : ...
0
votes
1answer
18 views
Mixing code-generated view controllers and storyboards
I've got a huge storyboard with lots of views defined. Now I created an additional view (and it's view controller) completely in code. How do I use that new, code-generated view in a storyboard? To ...
0
votes
1answer
18 views
Interface Builder loads the wrong language art. App works fine
Localizing is going fine so far. I have localizable.strings working, I have xib files split properly, everyone is happy. The problem I am having is when I split art files in a split xib file.
When ...
0
votes
0answers
26 views
Correct place to position UIImageView in View lifecycle
I am trying to position an image, using values calculated from the frame size during the loading phase of my UIViewController.
I have a method - (void) redrawImage that does all the calculations to ...
0
votes
0answers
15 views
Relative Auto Layout Constraints in Interface Builder
In code I can set constraints between two objects so that they are relative...
[self.view addConstraint:[NSLayoutConstraint constraintWithItem:item1
...
0
votes
1answer
18 views
why can't I resize my views anymore?
I'm using Xcode 4.6.2, and am having trouble resizing my views.
For instance, I just created a new Storyboard, and dropped one regular UIView on top of another. I went to to change it's top, by ...
0
votes
4answers
34 views
can the border of UITextView or UILabel be set in storyboard?
I want to set the border of a UITextView or a UILabel in storyboard.
Can it be done?
Programmatically, it is setBorderColor and setBorderWidth.
But can this be done in storyboard, which would be ...
1
vote
2answers
92 views
How to add a button on the Google maps in iOS?
I am new to iOS Programming and I have downloaded the google maps sdk for iOS and followed the instruction on their website ( as shown in this link
...
0
votes
1answer
40 views
How do I create an instance of a designed object in Objective-C?
I'm writing an application that will require multiple windows.
I've designed how I want my window to look in Interface Builder and when I start my application it all looks as it should.
I've got a ...
0
votes
3answers
43 views
Can't Wire to Subview in IB
Quick question. Using IB, I have a subview in a ViewController. In that subview I have a label, which I would like to wire to my custom subview class. However, IB will not let me. What am I ...
0
votes
1answer
41 views
My app requires using instantiateViewControllerWithIdentifier - why?
I have added a Storyboard file to an app that initially had none. For some reason, I could not get my custom UIViewController to display correctly until I added this into ...
0
votes
1answer
39 views
UIView inside UITableView does not show in runtime
I have an UITableViewController with UI in a storyboard file. I have drag-and-dropped an UIView on top of the UITableView. It looks great in Interface Builder, but doesn't show at all in runtime:
...
0
votes
2answers
35 views
Can't create outlet using Interface Builder - Lock symbol shown
I'm trying to create outlets using the Interface Builder, however when drag the UILabel from the IB to my controller's .h file the big lock symbol flashes for a few seconds and it doesn't actually ...
0
votes
0answers
19 views
Access files owner view controller instance from subclass (using SWRevealViewController)
I am using SWRevealViewController (https://github.com/Joan-Lluch/SWRevealViewController) and am trying to access the revealViewController instance that lives within the files owner view controller of ...
0
votes
1answer
9 views
access property of file's owner from child object
I am wondering how to access a property that lives in my File's Owner class from another class object that lives within the xib.
File's Owner of my xib is a ViewController with a property x.
UIView ...
0
votes
0answers
24 views
What could cause this kind of error when inserting into a collection view?
I get a really disgusting error when inserting into a collection view. I use autolayout, and everything has been setup through interface builder.
Error is here as was too big to paste.
Has anyone ...
0
votes
1answer
28 views
Proper way to hook up a NSTextField
I am trying to create a simple Mac OS X application which displays text output, which is logging for my program. Here is what I did:
1) Created a Mac OS X UI project
2) Added a "Text Field" ...
0
votes
1answer
17 views
Coloring links with multiple various colors in the same NSAttributedString
I'm using TTTAttributedLabel to detect clicks on links in a styled UILabel (using NSAttributedString), in an iOS 6 project. I'd like to be able to have alternating colors for links in my label; I'm ...
1
vote
1answer
34 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
50 views
How to create a container/child viewcontroller relationship in interface builder
To create from code a parent/child relationship between 2 view controllers basically it's just matter of doing something like:
[self addChildViewController:childViewController];
[self.view ...
0
votes
2answers
45 views
Interface building - UIViews vs Images vs Core graphics vs PDF subclass
My app uses flat graphics, which mostly consists of lines and flat surfaces...
Whats the best approach for building the UI?
use PNG images as much as possible (like for the attached picture, the ...
1
vote
1answer
60 views
How to manage a very large number of IBOutlets in an iOS app
I am trying to write an iPad app with the basic purpose of form filling. I have 5 independent forms that I have designed in Interface Builder with each form having more than 50 UILabels and ...
0
votes
0answers
47 views
UISegmented control change the background image
I am trying to change the background image of my UISegmentedControl bar. Tried doing this but I had no success in changing the background.
right now I tried the code
UIImage *img = [[UIImage ...
0
votes
1answer
35 views
UIView subclass in XIB doesn't display (drawRect: never called)
I am designing a custom view controller in interface builder with a XIB file and I have a custom UIView subclass that I want to add to my view controller. Here is how I've put my custom view into the ...
1
vote
2answers
41 views
Is it possible to 'hyperlink' text within a UILabel/TextView but activate a segue on tap of this 'hyperlink'?
I say 'hyperlink' because I don't know what else to call it, and that is how i'd like it to appear.
Obviously this is possible using a combination of labels and buttons, but my labels and buttons ...
1
vote
0answers
26 views
Why does my collection view header 'flash' white when I insert an item into its section? Any way to prevent this?
I have a collection view with both a header and footer. When I insert an item into the collection view using insertItemsAtIndexPaths, the header 'flashes' white, almost as if its reloading. Is there ...
0
votes
0answers
10 views
Referenced but unused images in XIB file
I'm working on an iPad project that has been heavily modified/recycled over a period of a couple of years. I have at least one XIB file (and likely several more) that contains references to png ...
-2
votes
2answers
26 views
Unknown class in Interface Builder file [closed]
I know that if this problem occurs, solution is as below:
Do this, in order:
Product->Clean in Xcode
delete the app from the simulator or device
restart Xcode
(Build &) Run again
If this ...
3
votes
2answers
53 views
How do you nudge in Xcode interface builder?
I have a view that I want to nudge a few pixels, but I can't seem to select it in any way that allows nudging. The easiest way for me to select it is by clicking its name in the object list on the ...
0
votes
1answer
25 views
Where does one find the API and secret key?
How do I find the API and secret key? I've searched your answers but they seem outdated as I can't find the links the instructions are referring to.
1
vote
1answer
47 views
Manually override a single view's rotation animation?
I have a view whose subviews adjust based on constraints (pre-iOS 6, no auto-layout). I rotate the device and the views animate into their new positions and dimensions as expected.
I add a new view ...
0
votes
0answers
40 views
Some nib objects are not init in iOS6
So I've been having problems with this for a while and not really noticing it I think. However I tried to do something basic this morning and I can't see why it's doing this, so I though I'd ask about ...
0
votes
1answer
28 views
Loading a view from NIB, IBOutletCollection is nil even though other IBOutlet's are working fine.
I laid out a view in a NIB file, then added my UIView subclass as the file owner.
The subclass looks like this:
@property (nonatomic, weak) IBOutlet UILabel* categoryLabel;
@property (nonatomic, ...
0
votes
1answer
32 views
Why won't my IBOutlets show up in my list of Outlets in Interface Builder?
I basically have code that reflects the answer from Connect a UILabel in Interface Builder and XCode?.
In one view controller I have several UILabels whose text is set by some other methods I have ...
0
votes
0answers
11 views
Preview of a view controller in another view controller?
I'm looking to create a 'homepage' for my app that shows a preview of each of the three other view controllers that the app has, and that when I tap on the preview it takes me to that view.
I was ...
0
votes
1answer
42 views
How to choose the attributes of a @property in a nutshell? [duplicate]
How to quickly know which attribute to add to a @property ?
I got it for @property (strong) and @property (weak), I think : strong if the class "owns" the referred-to instance ; weak if it is just a ...
0
votes
2answers
47 views
UICustom Button scale wrong
in Interface Builder I build this view. The 1s are UIButtons
but on Iphone 6 Simulator, it looks like this
I set 6 of those Views next to each other in a horizontal scrollable UIScrollView.
...
0
votes
1answer
29 views
iOS: How to get a modal view to partially cover the parent view?
I am quite new in iOS development and I am facing an issue with the design of navigation. So my goal is simple: I have a view with a right navigation button which I want to open a modal view that ...
0
votes
1answer
53 views
Can't set text in NSTextView from .xib
Below is a simplistic Obj-C / Cocoa "hello world" window, which is initialized from within a Carbon app. The .xib contains a NSWindow, which has an NSView containing the NSButton/NSButtonCell and a ...
0
votes
1answer
28 views
Why is my set cell height in Interface Builder not actually becoming the height in the app/simulator?
I set it to 95px in the storyboard. (Under size inspector)
But it ends up looking like this in the simulator (all squished):
I don't know what else to show. I don't know what's causing it. No, I ...
0
votes
0answers
15 views
many shared key equivalent sensitive to enclosing nsview interface builder
Can someone suggest how to re-use or share the same key equivalent across a variety of buttons, each button add items to an associated list (implemented as a nstableview). Two or more lists may be in ...
2
votes
2answers
94 views
simple C++ wrapper for VHDL DFF code
I want to know, how can I write a C++ wrapper for a simple VHDL D-flip-flop code. The code can be as follows:
entity DFF is
Port ( D : in std_logic;
CLK : in std_logic := '0';
...
1
vote
3answers
87 views
UIScrollView is cut off from UITabBarController
I have a UIScrollView that I place inside of a view (interface builder document .xib/.m/.h), however the lower portion of the UIScrollView is getting clipped and not showing the lower half of itself ...




