Tagged Questions
on apple, a nib file describes the visual elements of your application’s user interface, including windows, views, controls, and many others
16
votes
1answer
9k views
Easiest way to support multiple orientations? How do I load a custom NIB when the application is in Landscape?
I have an application in which I would like to support multiple orientations. I have two .xib files that I want to use, myViewController.xib and myViewControllerLandscape.xib. myViewController.xib ...
13
votes
2answers
3k views
Cannot zoom in and out of nib in the new Interface Builder
Have I missed something obvious or is it not possible to zoom freely in and out of an open nib file, within the integrated Interface Builder of Xcode 4?
13
votes
4answers
7k views
What's up with the .NIB -> .XIB?
What's up with the NIB->XIB change somewhere between XCode 3.0 to 3.1?
Is there any difference with this name change that I should know while I go through tutorials that mention nothing but the .nib ...
12
votes
2answers
5k views
NSViewController and multiple subviews from a Nib
I'm having a difficult time wrapping my head around loading views with Interface Builder and NSViewController.
My goal is to have a view which meets the following description: Top bar at the top ...
11
votes
3answers
1k views
Do I lose perfomance by using .xib files to provide an iPhone app's GUI?
I was wondering if there is a difference between using .xib files for GUI design and doing this programmatically.
As it is a compiler I would assume that there is no relevant time lost.
Am I wrong?
10
votes
1answer
23k views
Why doesn't initWithNibName work for my UIViewController subclass?
I have subclassed UIViewController into a new class, PageViewController (I'm writing a simple book app). I want to add a new view loaded from a nib file and am using the following code. It works.
...
10
votes
4answers
9k views
Objective-C / Cocoa, “First Responder” - Did I get that right?
Let me summarize this shortly: A "First Responder" in a nib file is an object, which represents the UI control element that has the user's focus. So if the user clicks on a control, the nib sets that ...
7
votes
3answers
501 views
If you have an IBOutlet, but not a property, is it retained or not?
I find the documentation on this issue to be unclear:
Say you are working with iOS (NOT the Mac case, no need to mention the differences). Say it is strictly 4.0+ (no need to mention differences in ...
7
votes
5answers
1k views
Good reasons why to not use XIB files?
Are there any good reasons why I should not use XIB / NIB files with an highly customized UI and extensive animations and super low memory footprint needs?
As a beginner I started with XIB. Then I ...
6
votes
1answer
269 views
FileMerge .nib file type cannot be merged
I am trying to merge two .nib files. FileMerge has no problem showing the comparison of the two files. I am trying to keep all the settings in one file (i.e. right side) except for two settings that ...
5
votes
1answer
1k views
Releasing IBOutlets in UIViewController’s viewDidUnload?
I’m a bit confused as to what happens exactly in Nib-based UIViewControllers. When generating a UIViewController subclass, the template contains a very specific comment in the viewDidUnload method:
...
5
votes
2answers
2k views
Memory leak in loadNibNamed?
I'm about to wrap up my first iPhone app and figured I'd run it through the Leaks Performance Tool. After fixing one obvious one, the only one I have left is one with a Nib acting as a table header ...
5
votes
3answers
268 views
Which “Top-Level Objects” is Apple talking about in the Memory Management Programming Guide?
In the Memory Management Programming Guide for Cocoa Apple talks about Top-Level Objects. They say, that I need an Outlet for each of them.
If there are any top-level objects you
do not store in ...
4
votes
1answer
615 views
Create a custom view using a nib and use it in a window
I have been struggling quite a bit with this problem and I can't seem to figure it out by myself.
This is the situation:
I want to have a custom Nib-based view, with its own ViewController. I then ...
4
votes
2answers
870 views
new xib in xcode4
I develped an iPhone app. Now i would like to do it in iPad. To do this I have to create the new .XIB files and linked to his Class.
I don't know how to create a new .xib in xcode4. Could somebody ...
4
votes
1answer
2k views
NSInternalInconsistencyException Could not load nib in bundle
I have create one application for child game.
It load 12 different question for each round . but after 4 round is completed my application get crash with the following log
ImageIO: ...
4
votes
1answer
913 views
Instantiating a UIView Subclass with a delegate, using a NIB file
I have a UIView subclass that I'd like to instantiate from a NIB file. I've been using this method to do it:
UINib *nib = [UINib nibWithNibName:@"SSNodeToolsView" bundle:[NSBundle mainBundle]];
self ...
4
votes
1answer
971 views
Single View controller with multiple nibs?
I am trying to construct a view controller that can be 'skinned' -- that is, have multiple appearances or personalities but that uses a single controller. Each view will have the same buttons, etc, ...
4
votes
1answer
6k views
How to load a UIView from a NIB?
I have been using UIViewControllers and initWithNibName with much success, basically using them as a convenient way to design the view with Interface Builder. Unfortunately I have built a hierarchy ...
4
votes
2answers
4k views
iphone app with multiple views/subviews: memory is not being deallocated
I have an iPhone application that loads succesive views in a framework based on the one explained in this link (basically a main ViewController that loads/removes additional views with a displayView ...
3
votes
2answers
84 views
Using multiple nib files with a single view controller?
Background
I'm using interface builder to create the UI for an app I'm working on. The app has a single screen that displays a series of buttons. Clicking on a button displays an associated view ...
3
votes
1answer
68 views
loadNibName method is too slow - how to make it quicker?
I have a scroll view, which contains about 40-50 objects of different types. The object's types are defined in function of the object's location (for ex. if is the 5th object in the scroll view-> is's ...
3
votes
2answers
61 views
Nib-created view retaining file's owner prevents deallocation of UIViewController
I have a view controller that I want to be released (and then possibly reallocated later in the application). The problem is that its view seems to hold a strong reference to it as shown in the stack ...
3
votes
1answer
127 views
Cocoa : How to use NSNib several times independently
I've asked how I can make a custom view repeat itself into several separate copies and have been told that I should use NSNib or NSViewController. I have a custom view in an nib file, whenever a user ...
3
votes
2answers
132 views
When to use multiple nibs?
Let's say my application has 6 windows, 1 windows is main windows, and other 5 are for settings, scores, statistics etc.
So if I'm correct, multiple nibs are used because of memory managament?
So If ...
3
votes
3answers
164 views
is it good practice to use lots of IBOutlets?
I'm still quite the beginner at iOS and so I've been doing lots of tutorials, lately.
Let's say I was making an app such as a calculator, with let's say 24 buttons. I've seen example code where the ...
3
votes
1answer
371 views
Pluggable custom-view Nibs (Nib-in-a-Nib): Memory leak – why?
Our current best-practice for custom views is:
Build the custom view in a Nib.
In the view controller, programmatically load the Nib, get the custom view from the array of loaded objects (we do this ...
3
votes
1answer
210 views
Is there a tool can convert simple .xib to Objective-C code automatically?
Is there a tool can change simple .xib to Objective-C code automatically?
I want to I do GUI design in Interface Builder and use the tool convert the .xib file to Objective-C code.
Is it possible?
3
votes
2answers
331 views
Xcode4 corruption of nib files
I have a rather strange problem that I can't quite get to the bottom of just yet, and I want to document it here because I haven't seen this problem discussed anywhere else.
I have a iPhone app that ...
3
votes
3answers
556 views
Cocoa - Link IBOutlet to Separate Nib
I have a nib file in which I load at a certain point in my application. Would it be legal for me to link a NSWindow IBOutlet from my AppDelegate to the 2nd nib file's window? In other words, my ...
3
votes
1answer
1k views
Three20 TTNavigator TTViewController automatic load XIB
I thought I want to share my knowledge with you around Three20 framework.
It is annoying if you use TTNavigator and you have custom VC that is subclass from TTViewController. It does not load the NIB ...
3
votes
1answer
710 views
Iphone Orientation and 2 Nib Files
I am trying to make an app where each view controller (.h/.m) has 2 NIB files... one for portrait, one for landscape. Is this the "standard" way of supporting orientation or must I manually set up the ...
3
votes
1answer
1k views
How do I get a view in Interface Builder to load a custom view in another nib?
I am making a custom widget that I would like to use in multiple nibs. So I make a new view nib Screen3, add some buttons, and now want my UIAwesomeSauce widget.
If I just add a view and then ...
3
votes
3answers
576 views
NSWindowController subclass initialization from a nib doesn't use -initWithCoder:?
I've added a custom subclass of NSWindowController to my Cocoa project, and added an instance of my subclass to my application's nib. I expected to see my override of the -initWithCoder: method called ...
3
votes
2answers
1k views
Loading a UIView subclass from NIB size issues
I have a subclass of UIView that needs to calculates it's height according to it's width. When created in code everything works. However when I try to create the view in Interface builder, and ...
3
votes
1answer
243 views
Separate orientation NIBs
I am trying to support multiple orientations within an iPad application, and the views that the designer came up with aren't able to be setup with purely the springs/struts model. I have laid out the ...
3
votes
1answer
3k views
How does loadNibNamed?
In most of the samples the return value from loadNibNamed value is not used, so I guess it's using the owner argument. But how does it work and make the connection to the owner object? What kind of ...
3
votes
2answers
2k views
Loading NIB using [NSBundle loadNibNamed:owner:] but the window does not appear in the foreground
I wrote a menu application that has no persistent window or standard menu. When another application has focus and I use the menulet to trigger a window to be opened, it appears behind the foreground ...
3
votes
2answers
348 views
What's the correct way to perform initialization code whether an object is loaded from a nib or created programmatically?
I've noticed that if you load connected views from a nib you have to override initWithCoder if you want to add initialization code because the designated initializer doesn't get called (which does ...
3
votes
2answers
2k views
How Can I Create a Nib with an asociated View Class that can be used by Multiple ViewControllers
I'm opening a new question to followup on my last one (http://stackoverflow.com/questions/2064513/superview-and-parentviewcontroller-nil-after-adding-a-subview). Basically I get that using subviews is ...
3
votes
2answers
905 views
iPhone: Is there a way to loadFromNib AND have a reuseIdentifier?
I am thinking about this problem now for very long.
I try to use different types of cells in my table, that each have their own cell controller and have a reuseIdentifier AND load from NIB.
The ...
3
votes
1answer
963 views
initWithNibName VS NSBundle's loadViewNamed
I've noticed that there are two different ways to load nib files: 1) via the UIView's initWithNibName:bundle: method and 2) NSBundle's loadNibNamed:owner:options: method. Can someone explain the ...
3
votes
1answer
3k views
UIViewController subclass init not called when loading from nib
I tried overriding the default initWithNibName designated initializer of a UIViewController subclass like so:
- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil {
if ...
3
votes
2answers
843 views
Performance penalty for using NIB files?
I am curious to know if anyone has any experience comparing the load time performance of iPhone apps with views laid out in NIBs vs. views laid out entirely programmatically (i.e. instantiating ...
2
votes
1answer
29 views
Saving user generated content in an iOS App
I have a design app that allows the user to move images around to create a design. I want them to be able to save their designs.
How would I go about doing this.
Thank you
2
votes
1answer
21 views
Use Objects in a generic View in a Nib file
I created a generic nib file "MyGenericView.xib" which owner (for reusability purposes) is UIViewController.
In my classes I can successfully load the view
[[NSBundle mainBundle] ...
2
votes
1answer
47 views
Localized NIB not loading the localized version of image in XCode4
I noticed an issue in XCode 4.2 where some localized NIBs don't load the correct image from their respective language bundle.
In one of my controllers, I have several image views. In the English ...
2
votes
2answers
255 views
Why does creating a UIGestureRecognizer subclass in an nib cause a crash using a UISplitViewController
I was interested in using a UIGestureRecognizer subclass (UILongPressGestureRecognizer) in a ViewController Subclass I had. My ViewController has a UIToolBar and programmatically I can create a ...
2
votes
1answer
110 views
Workflow for parsing PSD to Xcode/IB
i am searching for a way to parse a psd-layout to a nib-file or something like this. I want, that the designer builds a layout and slices this into the different elements. The result should be a ...
2
votes
1answer
164 views
Maintaining different localized versions of interface NIB files
I'm learning the basics steps to internationalize an app and I have a question about localizing interface NIB files... I've seen that in Xcode you can click on a AppViewController.xib interface file ...