0
votes
3answers
35 views
Objective c, problem with strings
Hi,
first of all please let me say that I am quite new to objective c development. I am writing a small app for personal use for the iphone, but I have some problems executing the following code:
…
0
votes
1answer
11 views
Strange delay with Navigation Controller behaviour
I have the following set up in a navigation controller.
The root is a list of categories (banks, hotels etc) and each category has a child view below it containing a table view of items (Bank A, Bank …
0
votes
1answer
12 views
Setting Horizontal Line (NSBox) line width in Interface Builder
I have an application that I am building am making use of Horizontal Line (which is just a special case of NSBox). I've placed the component into the interface, but what to adjust the thickness of the …
0
votes
2answers
25 views
Getting and Setting values from Core Data elements in Objective-C?
I've got a simple application with two entities:
Person:
Attributes:
name
Relationships:
nativeLanguage: (<<-> Language.natives)
nonNativeLanguage: (<<-> …
0
votes
3answers
37 views
Core Data + Core Animation/CALayer together??
I am making an Cocoa app with custom interfaces. So far I have implemented one version of the app using CALayer doing the rendering, which has been great given the hierarchical structure of CALayers, …
0
votes
1answer
18 views
Core Data: entity properties getting mixed
I have an NSWindow which I use to create new records. After pressing the Add button, a certain method is called in which I do the following:
- (IBAction)addActionAddSheet:sender {
…
1
vote
1answer
23 views
Centering Windows in Interface Builder
Short and sweet: How can I tell Interface Builder to center a window on a user's screen? I've seen the positioning tool on the inspector, but eyeballing doesn't always land as squarely as I like. Is …
0
votes
2answers
33 views
keyUp event heard?: Overridden NSView method
UPDATED: I'm now overriding the NSView keyUp method from a NSView subclass set to first responder like below, but am still not seeing evidence that it is being called.
@implementation svsView
- …
-2
votes
2answers
73 views
decode utf8 on iphone
Hi ,
i have NSstring that contain encoded utf8 i want to decode it.
how can i do that?
i try this but it didn't work
NSString *decodedString = [NSString stringWithUTF8String:[encodedString …
0
votes
4answers
33 views
Attempt to insert nil
Seems like it should be easy to add a boolean to an NSMutableArray.
Assume toDoArray is intialized as an NSMutableArray. The following:
BOOL checkBoxState = NO;
[toDoArray addObject:checkBoxState];
…
4
votes
11answers
215 views
What describes nil best? What’s that really?
Currently I understand it as a kind of "empty object". But what's it really?
1
vote
0answers
52 views
How to clear cookies from NSHTTPCookieStorage more then once?
My desktop app connects to a web application that's hosted on Google App engine. Once it authenticates it gets an authtoken cookie that it passes along for all future requests. That all works.
But …
1
vote
2answers
45 views
How to draw a rounded NSImage
I am trying to create a NSImage or NSImageCell with rounded corners inside a NSTableView. I can't get anything to work. Here is the best I have so far inside my custom NSCell:
- …
0
votes
1answer
48 views
Finding out if a Window is being Dragged
I am trying to write a program that requires to know if a window is being dragged (moved around). The catch is that it's not the program's window, but rather any window in the OS (eg. Safari, iTunes, …
0
votes
0answers
16 views
Cocoa PDFKit Unlocking Encrypted Files
Hi all
I have a PDF document that has an owner password set but no user password. Therefore it is encrypted.
I know the owner password and want to use PDFKit to confirm when the document has been …
