Tagged Questions
0
votes
1answer
73 views
Xcode can't compile XIBs
I'm getting the below error message and multiple XIB compilations failing with exit code 6. I can't make much sense of it. Anyone know what might be wrong?
I've cleaned the project, but that didn't ...
0
votes
0answers
53 views
NSOutlineView Not load child
I make a simple project for my problem OutlineTest
I make a document cocoa project with 2 XIB.
The first is tryDocuent and the second tryViewController.
I put an NSOutlineView in tryViewController and ...
0
votes
1answer
29 views
How to replace my CustomView with different Xib's
I placed one customView on my window in .xib file.
In that CustomView I have to load different views(xibs consist of CustomViews) from different xib files.
I am able to display any of those xib's for ...
0
votes
1answer
63 views
NSImage standard artwork & icon NSImageNameStatusAvailable
When I add an NSImageCell to a xib it has an image property where I can see some of the NSImage standard art work. From the doc it looks like quite a few, but in the drop down, I get less.
...
0
votes
1answer
58 views
Loading one view from nib in cocoa
I would like to know, how to make Cocoa OS X application to show only one window, when NIB file contains more than one? I know it is possible (I saw a project where it was done this way) but always ...
0
votes
0answers
96 views
Opening a XIB from a storyboard
After a few other problems I have implemented a storyboard into my app to solve them.
However I now need some help in opening an existing Xib which is not part of the storyboard when you click a ...
1
vote
1answer
181 views
Owner other than window controller in [NSWindowController initWithWindowNibName:owner]?
What I would like to know is how does the window controller I initialize with
NSWindowController *c=[[NSWindowController alloc] initWithWindowNibName:@"Win" owner:myObj]
know which window it should ...
0
votes
1answer
66 views
Multiple instances of an object inside a XIB file
I have a document-based app with the recommended NSDocument / NSWindowController setup. Every window has its own NSWindowController instance and an associated XIB file. The interface is loaded pretty ...
0
votes
1answer
67 views
NSTextField connect to NSMenuItem with KeyEquivalent
What's the best practice to connect a menuItem to a textfield/searchfield. I would like to offer the users the ability using the shortcut Command F for focusing the searchfield.
1
vote
1answer
125 views
Issue in MainWindow.XIB after compiling
I have an application that is not archived on XCode 4.2 as it contains mailcore framework but I have done successful archive on XCode 3.2 after done changes in the Library and header search Paths. But ...
0
votes
1answer
47 views
View is moved up when using vertical autoresize
In my custom drawn window I have a NSTextView under which I'd like to have NSScrollView separated by empty space. That's how I've set it up in xib.
In interface builder it looks fine, with nice ...
1
vote
1answer
187 views
In default Xcode OS X application template, is File's Owner == NSApplication?
I come from an iPhone application development background. I am trying to understand how the application initialization phase works in an OS X application. The one thing I find puzzling is that when ...
0
votes
1answer
197 views
Loading custom class UIView from NIB (IBOutlets nil)
I'm trying to modularize a complex UI in several xib's.
I want to programaticly load each additional xib from file.
The xib has controls which are connected to the custom view code.
Then I try to ...
0
votes
0answers
282 views
Merging ibtool localization .strings
Example: I have an EnglishXib.strings file generated with ibtool:
/* Class = "NSButton"; title = "Hello World"; ObjectID = "1"; */
"1.title" = "Hello World";
and some localizated version of it, for ...
2
votes
0answers
61 views
Issue with window cocoa xib
I am working on a MAc osx application. I have created a window with different views: Scroll view, tab view etc., I have an issue with the window created. If I run the application,
First time - ...
0
votes
3answers
231 views
Access the same object inside two different nib files
I want to know how the same reference of an object of a particular class can be accessed inside two different Xibs.
I understand that by creating an object reference for the class inside each xib ...
-1
votes
1answer
102 views
how to implement the core animation layer property in code
I set the Core Animation Layer of NSButton in the xib file, like below:
I'd like to know how to set it in the code.
Thanks!
0
votes
1answer
78 views
IBOutlet is somehow a NSZombie?
This is an OS X application. I am designing a custom sheet. Within my XIB file I have the sheet's window and a subclass of NSViewController which is responsible for controlling the views within the ...
4
votes
2answers
765 views
NSTableView makeViewWithIdentifier across nibs
I have a similar question to Cocoa - View-Based NSTableView, using one cell in multiple tables, amplified by
Apple's own docs for makeViewWithIdentifier:owner:
"Typically identifier is associated ...
0
votes
1answer
353 views
initWithNibName either called twice or wrong xib loaded
I'm programming a Cocoa application and want the application to work as a kind of Wizard. So in the main window I have a Custom View that interacts with the user and changes from a sign in to a ...
1
vote
2answers
130 views
Alternating between several NSViews
What I need may be pretty basic, but I'm definitely not sure as to how to proceed (I've done that before but none of my choices seem that Cocoa-friendly).
Ok, let's say we've got 2 NSViews - one next ...
0
votes
1answer
114 views
How to bind the same xib file to different core data entities
I have 4 entities in my core data with the same parent entity. They almost share the same properties.
I need to use the same xib fie (a panel to modify the entities properties), for 3 of these 4 ...
1
vote
2answers
124 views
Connecting actions works. Connecting outlets doesn't
I have a XIB file with my controls in it, loaded in the Interface Builder (Xcode 4.0.2 on Snow Leopard).
The file's owner is set to, let's say, the someClassController class, and I've also added (in ...
0
votes
2answers
967 views
Cocoa - Display xib on another xib
Can anyone tell me how (or direct me to info on) displaying a .xib (nib) on another .xib (nib).
How ever I wish to place it so I can programically move it around the main nib sort of like this (which ...
6
votes
1answer
691 views
NIB files and Version Control: Using branches
Is there a good way to use NIB (or XIB) files when working with branches?
When I try to do this, most of the time the merging of topic branches does not really work. Autogenerated IDs change very ...
11
votes
3answers
9k views
Use storyboards in a project which has .xib files- iPhone
I want to use generally the old .xib files in my iPhone application. But when it comes to tableViewController storyboard is a lot more convenient in order to make custom cells etc. Is it possible to ...
4
votes
2answers
2k views
How to Display and Manage a Simple Application-Modal Dialog in Cocoa
I am not sure I am doing things the right way, or if I have it all hacked up.
I have a really simple test application (not document-based) I created for learning how to work with application-modal ...
3
votes
1answer
568 views
How do I add Main Menu to xib
I deleted main menu from my xib file. How can I recreate it without coping it from
another freshly created xib?
I can't seem find how to tell IB that menu that I add from object library is actually ...
6
votes
2answers
1k 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 ...
2
votes
2answers
1k views
How does incremental localization work?
I'm trying to build my first localized application. I have all the strings in code translated using NSLocalizedString (for use with genstrings tool). Now I'm bumping into ibtool. How does incremental ...
0
votes
2answers
161 views
Cocoa applications from the command line
I've been attempting to create a Cocoa (desktop) application without using NIBs or XIBs, following the instructions here. All is well, and from Terminal.app I can successfully run the application. ...
1
vote
1answer
212 views
Disable Sound on NSButton
In my xib I have defined that some of my NSButtons have a sound file that should play whenever the button is clicked. I'd like to offer my users the option to disable sound effects. Is there any way ...
1
vote
1answer
201 views
Read property from XIB file prior to instantiation
There are a couple of times I've wanted to use the value from a XIB file prior to creating an instance of the class; the two that come to mind are:
Calculating height for table cells - all cells in ...
1
vote
2answers
1k views
How to connect a menu item to a custom action defined in the NSApplication delegate across nib files?
In my Cocoa app I have two NIB/XIB files that I need to connect:
MainMenu.xib: contains a custom object for the NSApplication delegate object and connects it to the proper outlet in the ...
0
votes
2answers
430 views
Split NSTabView across multiple NSViewControllers and XIBs
I'm just getting into desktop Cocoa development (I have experience with iOS development). If this question seems basic, forgive me.
That being said, I'm dealing with a large program with lots of ...
3
votes
4answers
1k views
awakeFromNib method called multiple times
In my NSPersistenDocument based project i have a structure like this
myDocument (NSPersistentDocument) -> myDocument.xib (windows xib)
|
...
2
votes
2answers
718 views
Cocoa app without a MainMenu.xib
For iOS (Cocoa Touch), it's possible to go to your main.m and replace the fourth argument in UIApplicationMain(int argc, char *argv[], nil, nil) with the class name of your app's delegate, which would ...
4
votes
2answers
644 views
How can I see code for nib/xib files?
Is it possible for us to see the source code generated behind the out of xib/nib files (I know they are xml files)?
I heard about NIBTOOL but I believe it is no longer available or replaced by some ...
0
votes
2answers
228 views
awakeFromNib from nib1 got called when programmatically load nib2
When I loaded nib2 from nib1 with the syntax below, the awakeFromNib method from my current nib (nib1) got called again. (But not the initWithFrame method) Even though the nib2 was opened and got the ...
2
votes
2answers
351 views
Lost feature - how do I get an overview of the strings contained in a xib in XCode 4?
the Internationalization Guide mentions a sweet feature - by choosing "Tools > Strings" you should be able to view and edit all the strings contained in a xib file in a nice table. It's available for ...
6
votes
3answers
3k 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 ...
10
votes
2answers
8k 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.
3
votes
1answer
1k 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 ...
0
votes
1answer
601 views
Xcode : cannot change main nib file
I have a Home Page .xib and a MainWindow.xib. The plist says MainWindow is the main nib file. I launch the app and all is okay with MainWindow as main/beginning page, but I want to make the Home Page ...
4
votes
2answers
4k 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 ...
0
votes
1answer
811 views
Cocoa NSPopupButton Problem
In my Cocoa Application, In One view i added a NSPopupButton via Interface builder and linked that accordingly with the source file,
Now in the Code, i am creating Menu dynamically and adding menu ...
1
vote
2answers
2k views
Switch XIB Views - Cocoa Mac
I am pretty new to coding and would like to know how to switch XIB views on a button click. IS there also anyway to add animation when switching?
Thanks,
Kevin
0
votes
3answers
1k views
New NSWindow from application - mission impossible?
OK, what am I doing wrong?
1. Created cocoa app and appDelegate named: window2AppDelegate
2. window2AppDelegate.h
#import "PrefWindowController.h"
@interface window2AppDelegate : NSObject ...
1
vote
1answer
423 views
NSView high-level overview?
I am trying to create a custom view and load it into a window.
In the end, I know there will be a few steps to follow, reflecting the key relationships that I am missing. I am hoping someone can ...
4
votes
1answer
1k views
Starting a Cocoa document-based application shows selection window first
This seems like it should be easy yet I must be missing something. I have a document-based application. I have also built a new XIB that has a NSTableView and three buttons on it that I intend to ...





