1
vote
0answers
56 views

NSTextField doesn't respond to keyboard input

I tried to write a single-window application using Objective-C in OS X 10.8 to test some thing. Everything works fine except that the NSTextField I created does not respond to keyboard input. The ...
0
votes
1answer
77 views

Call a method in appDelegate from a button action connected with an nsView

Here is my problem. I have an NSTextField connected to my app delegate. Then i have a CustomView in my MainManu.xib associated with a new class i created, "myView", sublass of NSView. finally a Button ...
0
votes
1answer
52 views

Borderless NSTextField with a 6px border-bottom?

Is it somehow possible to subclass NSTextField, and add a 6px border to the bottom side only? The other sides should be borderless. No shadows, no anything. I tried replicating this with a NSView ...
1
vote
0answers
40 views

How to create NSbutton insode NStextfield

In my application i need to show one label which showing the content and in the end of the label i need to show one button with close icon that will perform some action. can any one suggest way how to ...
0
votes
1answer
29 views

Keep an NSTextField (non visible) or start a new one when needed?

I have a 'canvas' view in which the user can enter a short strings at various positions. I use an NSTextField for the entry, or for editing, but when not being edited the text is just drawn in the ...
0
votes
0answers
52 views

Strange behavior of mouseMoved in NSView

I subclassed NSView to control background and mouse moves of the main view of the front window of my app. In awakeFromNib I set addTrackingRect for mouse events with success: [self ...
2
votes
1answer
380 views

Setting background color in drawRect of NSSearchField subclass

I have a custom subclass of NSSearchField that I would like to set the background color of. @interface CustomNSSearchField : NSSearchField @end So far, I have tried: Attempt #1 @implementation ...
0
votes
0answers
64 views

Custom NSView doesn't update a binding in the Xib

Problem: a NSTextField is not updating the value it is bound to Info: Custom subclass of NSView. the AppDelegate has an IBOutlet of the custom view, and it is connected in the Xib to an NSObject ...
1
vote
2answers
341 views

CALayer and drawRect

I'm completely new to Core Animation, CALayer and all this stuff, so bear with me. I have a custom NSTextField using as a Label. I would want the content to animate it's position, so the whole string ...
1
vote
1answer
374 views

Positioning NSTextField correctly with setFrame:

I am having problems positioning my NSTextFields inside my views so I hope you guys can help me. I have this NSView *theView with [theView setFrame:NSMakeRect(10, 10, 64, 64)]; which positions the ...
0
votes
1answer
273 views

I'm unable to position NSTextField correctly in NSBezierPath-drawn diagram

I'm a beginner Cocoa programmer. I wish to position a Cocoa NSTextField (a subview of a custom view) programmatically next to a geometric diagram drawn on the custom view in a program to be developed ...
2
votes
2answers
471 views

Setting tab order for NSTextFields of an NSView

I am trying to set the tab order for NSTextFields on a given NSView. As far as I understand it I have to connect the NSTextFields with InterfaceBuilder by setting the nextKeyView outlet to the next ...
1
vote
1answer
168 views

Weird font behavior on the NSTextField

I added programmatically NSTextField to my NSView: NSTextField *projectLabel = [[NSTextField alloc] initWithFrame:frame]; [projectLabel setStringValue:@"projectName"]; [projectLabel setBezeled:NO]; ...
0
votes
3answers
610 views

location of a button/textfield in a view in cocoa

I'm sorry to ask such a question, but I can't seem to find the answer for it from the wild web. I want to find out the location of a NSTextField in my custom view, so I can add other textfields under ...
0
votes
1answer
390 views

NSView resizing

I have an NSView with a NSTextField in it. The problem is, each time before displaying the view, the size of the NSTextField can change and I want the size of NSView to change with it. So if textfield ...
2
votes
0answers
572 views

Fail to automatically resize NSTextField under NSView (as menu item)

I am an inexperienced user trying to learn via the simple projects creation process... I request your assistance as I have not found a working solution for two whole days now, digging the Xcode Help ...
0
votes
2answers
625 views

NSView | NSTextField Right Click issue

I have a NSView and inside that, there is a Label : NSTextField Control, Inside NSView i have to show a context menu on the right click, its working fine except few below issue, At some place it ...
0
votes
2answers
716 views

Drawing in NStextField

Hey ho! If you wanted to implement a highlighting for specific substrings in a NSTextField like on the screenshot (Tweetie.app) how would you do it? :) Thanks for your help!