Tagged Questions
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
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 ...
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
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
0answers
12 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 ...
0
votes
1answer
38 views
How to manipulate the underlying Text View within a Window?
This is a document-based app. I want to manipulate the underlying text view within my window. I set it up as follows:
So I also created an outlet to my document class to manipulate it.
...
0
votes
0answers
45 views
Round button size disabled in IB
Is there a way to change the size of a round style button in Interface Builder (OSX project)? I'm trying to achieve something like the Run/Stop button in Xcode toolbar. When I drop a round button onto ...
1
vote
1answer
20 views
Binding a Menu Item to a property of the First Responder
I have a document-based application.
In my document class,
I have a BOOL property : isActionPossible.
I also have an IBAction : - (IBAction) doTheAction:(id)sender.
Now, in MainMenu.xib, I want ...
0
votes
1answer
66 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 ...
1
vote
1answer
62 views
NSTextField click-through?
I have a static NSTextField that overlays a large error message in my OS X app. I'm trying to get it to allow the user to click controls beneath it.
In IB I've unchecked "enabled" and I've checked ...
0
votes
1answer
24 views
How to create custom Object Library items?
I have written a custom view class that has two sub views, very similar to NSSplitView. I would like my new class to show up with two sub views when it is used in interface builder. The two subviews ...
0
votes
1answer
63 views
osx switch between two nsviews
I would like to switch between two NSView controls upon pressing the button. Basically, i have .xib file which contains NSWindow control. Window contains two subviews and few buttons. I have dragged ...
-3
votes
1answer
231 views
Is there a simple Cocoa application tutorial with explanation? [closed]
I read about five tutorials but unable to get rid of cocoa application. I am trying to get started with cocoa application and Interface builder.
In my first program i am trying to get 1 textfield and ...
0
votes
1answer
32 views
Is it possible to set a UIImageView as the background of a prototype UITableViewCell in Interface Builder?
If I set a UIImageView as the backgroundView of a prototype cell of a UITableView in Interface Builder, then create a table with more than one row using the prototype, then only the last created cell ...
0
votes
1answer
43 views
Interface Builder for Dummies: how to set the action of my button to “selectNext”?
I am in "the Binding Inspector" of my button, but I don't know how to put the right information.
I guess I have to enter information only for "Target" (not for Argument
I bind it to "Array ...
0
votes
1answer
22 views
How to bind a property to an external controller?
I work with the SDK 10.6, with Xcode 4.2.
I want to bind a "property" to a controller that exists "out of my nib". How could I do :
with Interface Builder ?
without it ?
More precisely, I want to ...
1
vote
3answers
83 views
Should outlets have getters/setters?
Should I better always write
@interface MyClass
{
NSTextField * myTextField ;
}
@property (assign) NSTextField * myTextField ;
or just
@interface MyClass
{
...
0
votes
2answers
44 views
How to repaint window after hide or show control
I have a NSTextField control on the bottom of the window.
I need to show them or hide according to some condition.
In the initial state the control is hidden.
The window shows the blank space on the ...
1
vote
1answer
46 views
Distorted views in interface builder. How is it possible?
Just saw this in an itnerface builder file. How can this be done? Is this some super secret hidden feature of interface builder?
0
votes
2answers
163 views
XCode 4.6 - Document.xib + MainMenu.xib action from MainMenu shall set outlet in Document.xib
I have a MainMenu which should call an action in an AppController which then should send a message to an outlet of the MainDocument.
When I instantiate an object in Interface Builder in MainMenu.xib ...
1
vote
1answer
89 views
Custom UIView in Interface Builder / Cross Platform
I have a control library for iOS and Mac OS. It's implemented as follows:
#if TARGET_OS_IPHONE
#import <UIKit/UIKit.h>
@interface MyCustonControl : UIControl
...
@end
#else
#import ...
0
votes
4answers
80 views
What is the File's Owner (in Interface builder)?
I am new to Cocoa and I don't understand the concept of File's Owner of a .nib file.
Here is the way I would see things :
Consider a file myNibFile.nib file that describes how looks a window.
Now, ...
1
vote
1answer
131 views
Reusable NSView from .xib
In several parts of my application, I need a control where a user can enter a password. The password field is secure, however I want the user to have the ability to switch the field to plain text and ...
0
votes
1answer
44 views
Cannot connect Objects to actions - no drag'n'drop option?
I have my MainMenu.xib with the Main Menu in it. I also have several NSObject subclasses as Menu Controllers, which are all represented in IB as objects, so that each Menu Item in the Main Menu ...
0
votes
0answers
17 views
Lost actions in the Main Menu
I'm using Xcode 4.6.
Cannot find some important actions for the First Responder:
File > Page Setup
Edit > Redo
App menu > Show All
Is there a way to get them without manually implementing these ...
0
votes
1answer
50 views
MVC Structure?
I am having some difficulty getting my head around the MVC structure.
What I am still struggling with is, when creating the Control to accompany the supporting code, does one need to include the ...
0
votes
1answer
269 views
Autolayout constraints between two dynamically resizing views
Premise
I have a superview C that simply contains two subviews A and B. ASCII art:
+-----------+
| view A |
| view B |
+-----------+
Here's what I want:
A's top must be pinned to C's top. ...
1
vote
1answer
262 views
make nstextfield single line
how to make NSTextField really single line?
I created a text field programmatically. when the return key is pressed, all text is selected. but I can still paste multiple lines of text. And when I ...
0
votes
0answers
40 views
IKImageView properties not being set in Interface Builder
I have a IKImageView in Interface Builder and have set the background color to red but it doesn't work when the app is run, it just stays gray.
I created a brand new Cocoa (OS X) project in Xcode ...
0
votes
1answer
108 views
Custom NSView for NSTableView not updating components
I created a custom NSView for a NSTableView.
I am trying to fill the fields I created in it using the Interface Builder but I can't. I would say each component is properly linked and the code is OK.
...
1
vote
1answer
49 views
Cocoa window max size vertically, but not horizontally
I'd like my window to have contraints on how much it can be expanded vertically, but no constraints on horizontal expansion. From what I can see in the Interface Builder, If you check the box to set ...
0
votes
2answers
176 views
Mac OS X custom application view
I've been searching Google and S.O. the last few days and am not quite sure the right question to even ask.
I'm 100% a complete noob when it comes to OS X programming. Thought I'd try my hand at a ...
0
votes
1answer
40 views
How can I create a new instance of a window in xcode?
I'm making a web browsing application on OS X through Xcode, and I was wondering if there was a way to copy a window you already have and make a new one. For example, in my web browser (I haven't ...
1
vote
1answer
66 views
Best way to implement custom view
I'm looking for the best and fastest way to implement view pictured above and I need advice.
I should manually build views, subviews, cells and menus from the scratch or use NSTableView and modify ...
0
votes
1answer
102 views
OS X Notification Center Font
I want to have in my app a Notification Center like font, e.g. this white crisp font with the black outline, but I struggle to get it done in IB.
Does anyone know what font type, size, etc apple ...
0
votes
1answer
391 views
View Based NSTableView with Sections
I am looking for a way to create the iOS like sections in NSTableView (like in iTunes 11 - Attached).
As you can see in the screenshot, "Albums" is one section and "Songs" is second. Any help would ...
5
votes
1answer
194 views
Inserting controller logic between model and view when using Interface Builder, NSObjectController sub-classes, and bindings
I've been struggling to understand the best way to insert controller logic when using IB, NSObjectController sub-classes and bindings.
I need to insert controller logic between the model and the ...
1
vote
1answer
65 views
NSView subclass with IBOutlets and IBActions
I have an NSView subclass that is used for displaying a custom object. The drawing logic is all in methods on the subclass. There is no view controller associated with this view.
I have added a ...
1
vote
1answer
127 views
NSMenuItem Key Equivalent not working when menu is hidden
I have an NSMenu in Interface Builder that is connected to an NSTableView's menu outlet.
I want to assign Key Equivalents to the items in this menu so the user doesn't have to right click, but they ...
1
vote
0answers
197 views
ITunes 11 new User Interface
Itunes 11 introduces a new UI-Element. It is an additional button row below the toolbar:
One purpose of this new row is the replacement of NSSegmentedControls.
How is it called and how would I ...
3
votes
0answers
466 views
Can not get rid of autolayout! “Unable to install constraint on view”
I developed half my app with autolayout. Now I want to get rid of it. I only used it in the NIB. I disabled it in interface builder (the check box) but I keep getting this error:
* Terminating app ...
0
votes
1answer
95 views
NSCollectionViewItem, size to content
I have an NSCollectionView, which I'm binding to a collection of strings.
The view that I'm using for my NSCollectionViewItem is very simple, it simply contains an NSTextField.
NSView
- NSTextField
...
0
votes
1answer
138 views
NSButton inside tableCellView: how to use the “action invocation” for a View Based NSTableView/NSArrayController
For a View Based NSTableView/NSarrayController: how would I use the "action invocation" from a NSButton inside a tableCellView to change an attribute for an entity?
I have the following setup:
A ...
0
votes
1answer
84 views
Does NSWindow setAspectRatio include the size of the top bar?
On a program I am currently working on, I would like to lock the aspect ratio of the main window to make sure some visual elements stay proportionate.
I have managed to get this working by doing the ...
0
votes
2answers
374 views
How can I force NSTextField to only allow numbers?
In Interface Builder I’ve created a textfield and stuck an NSNumberFormatter into the cell. However, the user can still type text into the textfield. Is there any way to restrict the input to ...
1
vote
1answer
110 views
In Interface builder, how can I add a custom button to a window title bar?
In my OS X app, using Interface Builder, I have a window that looks like this:
I'd like to add a button to the right-hand side, to achieve this:
If this is possible, how can I do it?
0
votes
2answers
225 views
How to set the font of NSMenu/NSMenuItems?
I can’t figure out how to set the font/styling of my NSMenuItems in my NSMenu. I tried the setFont method on the NSMenu but it doesn’t seem to have any effect on the menu items. NSMenuItem doesn’t ...
0
votes
1answer
135 views
draw separately in 2 custom views in one class
In IB, put 2 custom views into one window. I don't see any way to give them separate names. In Inspector-Info I had to use the same name, the class name, for both of them in the drop-down menu. I ...
1
vote
0answers
84 views
Composing NSViews using Interface Builder only
I have some custom views that I want to reuse throughout my application.
I create a new Objective C class in XCode and set the type to 'NSViewController'. I check the box to create .xib file for the ...
0
votes
1answer
191 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 ...



