Tagged Questions

XIB is the file format for Interface Builder, which is a development tool for the Mac OS X & iOS platforms.

learn more… | top users | synonyms

23
votes
8answers
13k views

Converting iPhone xib to iPad xib?

How do you do it? I saw one video tutorial on it, but the screen was too small. Also, other than changing the view size, are there any other major changes I would have to make to my iphone apps to ...
16
votes
4answers
10k views

How to Empty Caches and Clean All Targets Xcode 4

I don't have the reputation to comment answers so i'll just post a new one. Jonathan suggest here: Xcode Includes .xib files that have been deleted! that cleaning all targets and empty the caches ...
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 ...
15
votes
4answers
1k views

Localizing a modern xib-based Mac application

Ours is an open-source Mac application localized by volunteers. These volunteers will do their work on special localization builds of the software (with unstripped nibs), then send us the changes to ...
14
votes
2answers
188 views

Why is my XIB modified every time I open it in IB?

I click on the XIB via the project navigator. It opens up and immediately changes the icon to gray showing I have unsaved changes. If I save changes, click on a different file and click back to ...
14
votes
3answers
13k views

Multiple Views within one XIB - iPhone SDK

I have been spending time learning how to use the iPhone SDK. I've read "Beginning iPhone Development: Exploring the iPhone SDK" from cover to cover and I've never seen an example of multiple views ...
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
5answers
4k views

Can you reference Xib files from static libraries on the iPhone?

In my app, i currently have all my code separated into a static library, to make it easier to set up the xcode project targets for the actual app and for unit tests for my code. The problem with this ...
8
votes
1answer
848 views

XIB File opens like an XML in XCode but opens correctly with Interface Builder

When I double-click my file StartWindow.xib in Xcode 4, it does not open into the integrated Interface Builder; it opens like a XML file. I can open all other xib files. I can open it with the old ...
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
2k views

Xcode 4.2 Template Changes - UIApplication & MainWindow.xib

Background: Up until Xcode 4.2, new projects created using any of the templates would contain a MainWindow.xib and therefore pass nil as the fourth argument of UIApplicationMain(). Starting in Xcode ...
6
votes
2answers
469 views

setStatusBarHidden:NO after XIB load covers UINavigationBar

When setStatusBarHidden:NO is set before the view loads, the UINavigationBar and other elements appear aligned immediately below the StatusBar as they should. However, when setStatusBarHidden:NO is ...
6
votes
3answers
2k views

Why does my XIB file not localize (iPhone)?

Situation: I am starting XCode, creating a new project for the iPhone (view application) and loading the XIB file into the IB. I manipulate the view (adding a label with the string "hello"), save, ...
6
votes
3answers
4k views

Not sure why UIView is being nudged up by around 10px

I've created a simple iPhone app which has two .xib files. In the app delegate at application did finish launching I display the first .xib file by calling: [window addSubview:myView]; and I do the ...
5
votes
2answers
115 views

Xcode: Run project with specified localization

My Cocoa project is localized in Italian (my language) and English language. If I run it, i see everything in Italian (of course, my OS is italian!). How can I run it to test the English localization ...
5
votes
1answer
176 views

Creating a static framework that uses Xibs…how to?

I have a need to create a packaging of UI classes that can be included in an XCode4 integration project by a developer and then get instantiated through the use of a config file in conjunction with ...
5
votes
1answer
226 views

ApplicationDelegate Singleton iphone

I use a singleton to share an array between several classes and this array holds some info from a xml file. I have a currencyView (and when I scroll, new currencyview is created). When the first ...
5
votes
2answers
1k views

One xib File with Multiple “File's Owner”s

I've got three different UITableViews, each in it's own view, accessed via tabs. All three tables would ideally share the same custom UITableViewCell class and .xib file. I started with one table, ...
5
votes
2answers
627 views

How to close a window programmatically in Cocoa Mac?

How can I programmatically close a window in cocoa mac ? I have opened a second window/xib from the first window/xib using button click. I need to close the first window/xib programmatically on ...
5
votes
4answers
11k views

How to load an XIB?

I have an app with 2 screens (MainViewController and AboutViewController). Upon the user clicking a button, I'd like to load the AboutViewController screen, which is defined in another XIB. Seems ...
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
2answers
869 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
2answers
1k views

How to open a new window on button click in Cocoa Mac Application?

I want to know how to open a new window on button click in Cocoa Mac Programming. Help me. I am doing a mac application which needs to open a new mac window on particular button click.
4
votes
2answers
350 views

iAd — cannot click banner

I am creating a universal-app template. This template will need to support optional iAds, and optionally all orientations. I coded up a solution only to find a bizarre bug. in certain situations ...
4
votes
7answers
4k views

Xcode 4 .xib Create iPad Version

I have an iPhone xib I want to turn into an iPad xib. In Xcode 3 there was a "Create iPad Version" menu option. How do I do this in Xcode 4? I currently resized my xib, but when I turn on the ...
4
votes
2answers
699 views

IPhone: How to duplicate a .xib file?

I see there's no "duplicate" when I right click on a .xib. So is the way to do it: just to go to finder, copy the file to another name, and then drag it to my resources? Would that be all I'd need to ...
4
votes
1answer
5k views

Best way to change XIB files based on rotation?

My app has so far just been a portrait-based application. However, I am adding landscape mode to a new version, but have found that my XIB files look shocking when rotated from portrait to landscape. ...
4
votes
5answers
9k views

Loading UINavigationController from another nib automatically by UITabBarController

I think I've found the cause: Document Info window in IB has a warning: "'Selected Navigation Controller (Second)' has nib name property set to 'SecondView.nib', but this view controller is not ...
3
votes
0answers
1k views

Defines Presentation context is not available prior to xcode 4.2

I've been trying to open up a sample that is kind of close to the app that I'm trying to build, but when I go to mainWindow.xib and customize the tab bar that was already there, It just doesn't update ...
3
votes
2answers
43 views

round image button VS square controller

I have a custom button with a round image. The problem is that the controller is square by default so whenever i click on the corners of the image, the button responds calling the associated method, ...
3
votes
1answer
1k views

XCode IDE does not support older documents after updating to Lion

Today I tried to work on an older application and got this message: "This version of Interface Builder does not support documents of type "Interface Builder Cocoa Touch Document (XIB 3.x)" targeting ...
3
votes
3answers
322 views

How can I view the object hierarchy in XCode 4 like XCode 3 does?

In Information Builder, I need to view/navigate all the objects in a the XIB and like to use the object hierarchy view in Xcode 3. However, in XCode 4, it just show the top level objects, but not the ...
3
votes
2answers
184 views

How to avoid Xcode 4's gratuitous edits to xib files?

When I navigate to one of my xib files, Xcode marks the file as touched. Undo and revert have no effect. Saving seems to do no harm, but the glitch causes me frequent additional git work. Has ...
3
votes
2answers
580 views

File's Owner + First Responder

What exactly does the File's Owner and First Responder Placeholder in Xcode represent?
3
votes
1answer
436 views

Custom UIView Configured With InterfaceBuilder

Numerous people have asked a similar question, but the responses were either just vague enough or not in the direction I needed things to go, so I will attempt to ask this as concretely as possible. ...
3
votes
1answer
649 views

Monotouch and Xcode 4 - How to Open XIB in Xcode 3

I just installed Xcode 4 and found I can't edit XIBs yet from MonoTouch. How do I get MonoTouch to open my XIBs with the old Interface builder? When I right click I get "Open With" but the old UI ...
3
votes
1answer
483 views

How to reference XIB files from a parent XIB

If I create a custom UIView in ChildView.xib - how do I reference that from MainWindow.xib? I tried to drag a UIView to MainWindow.xib and associate it with the same ChildView class. I made the ...
3
votes
2answers
500 views

Idiom for Initializing UINavigationItem

Since UIViewController navigationItem outlets are deprecated (yes, I'm a bit behind), what is the correct idiom specifying the elements of a UINavigationItem? I've seen several approaches suggested, ...
3
votes
2answers
1k views

How does Xcode decide which XIB to show first

When I create a new cocoa project in Xcode, it creates a MainMenu.xib file with a Window. I would like to separate the window into a MainWindow.xib and have that show up as the main window - how do I ...
3
votes
2answers
313 views

Reuse of code-based UIViews compared with XIBs

Say that I have a UIView which I would like to re-use in multiple view controllers, given that it is a fairly generic UIView object with high re-usability value (like a UITextField or ...
3
votes
1answer
1k views

How to load a view XIB as a subview into a view controller XIB

I have a custom view I made with an IB file since it's quite complex: (RotatorView.xib/.h/.m). I want to add the RotatorView as a subview to a view controller. I can do this programmatically using: ...
3
votes
2answers
204 views

Best way to load content from web

I have an app which displays 10 images and each image is associated with a button and a URL link. I would like to release this app, but be able to update the images and links via the web without ...
3
votes
8answers
943 views

Xcode shows old, deleted xib files

I've searched all over and haven't found any help... I built a small test app with two UIViewControllers and their corresponding xibs. Things were fine, then I made some changes to both xibs but ...
3
votes
1answer
1k views

XIB File Not Loading Properly In Interface Builder

I was creating a new View-based Application in XCode, adding some outlet and actions, using the IBAction and IBOutlet tags, into the automatically created controller view header file. I then double ...
3
votes
1answer
316 views

Is it advisable to use the same xib in a UINavigationController view and a modal view?

I have a view (and corresponding view controller) in my iPhone app that allows the user to edit settings for the application. This view is accessible via a menu (a table view). I use ...
3
votes
1answer
620 views

setup coredata, before appdelegate loads my mainWindow.xib

I have setup coredata in my appDelegate, but it first loads the mainWindow.xib and the corresponding controllers+views in that xib file. Those controllers need to have a managedObjectContext to load ...
3
votes
1answer
377 views

Why does Xcode warn me about title shadow offsets in xib files even though I'm targeting iPhone OS 3.0?

When I build my iPhone project, I get warnings from xcode about a few of my xibs saying: Specifying a title shadow offset in Interface Builder is not supported by the iPhone SDK for iPhone OS ...
3
votes
2answers
842 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 ...
3
votes
3answers
2k views

Packaging a Bundle with a static library

I have a static library that includes some xibs. These will basically be the same across projects. I'd like to include the xibs as part of the library. I can include their veiwcontrollers, ...

1 2 3 4 5 11