Search Results

2
votes

Getting a unique ID for a window of another application

The function HIWindowGetCGWindowID() can only return a CGWindowID for one of your app's windows, since a WindowRef from another program won't be valid in yours. The function CGWindowListCop …
6
votes

Handling Callbacks in Objective-C

Are your problems specifically with the IOKit callback routines? The problem with the specific example you gave is that the IOServiceMatchingCallback takes only 2 parameters, not 3. You need your …
1
vote

Obtaining an NSDecimalNumber from a locale specific string?

This seems to work: NSString *s = @"0.07"; NSScanner* scanner = [NSScanner localizedScannerWithString:s]; NSDecimal decimal; [scanner scanDecimal:&decimal]; NSDecimalNumber *de …
2
votes

Object ownership in stringWithString and initWithString in NSString

Actually, both setters are wrong. The 'incorrect' one is wrong for general memory management reasons (which are well-expounded elsewhere). The 'recommended' one is wrong for 2 reasons: …
5
votes

Padding in NSTextView — possible without custom drawing?

The NSTextView method -setTextContainerInset: does what you're looking for. The height and width components of the NSSize parameter specify the vertical and horizontal padding amount respectively. …
1
vote

Encrypting data in Cocoa, decoding in PHP (and vice versa)

I think your problem is that the method of deriving the raw encryption key from the key string is different on the two sides. The php md5() function returns a hexadecimal string, i.e 'a476c3...' wh …
2
votes

how to block a superclass method to be called to a subclass

Just re-implement the unsafe method in your subclass and have it do nothing or throw an exception or re-implement it as safe, just as long as the new implementation doesn't call the unsafe supercla …
1
vote

How do I get keyboard events in an NSStatusWindowLevel window while my application is not frontmost?

A simpler route that may work better for you is to make your app background-only. The discussion on CocoaDev of the LSUIElement …
1
vote

Mounting a folder as a device in Finder using Cocoa

Can I suggest rethinking this entirely? A symlink or alias would work, but, if possible, a better idea would be to register for the filetypes people will be moving into that folder, and then respo …
0
votes

How can I troubleshoot my custom URL scheme?

The big question is: Where are you calling NSAppleEventManager's -setEventHandler:...? You need to call this before your app finishes launching if you want to catch a URL that started your app. I …
1
vote

How can I troubleshoot my custom URL scheme?

Well, I can't help but notice that you're -init method is mis-declared. If should have return type id and have a return self; at the end. - …
1
vote

Can you Bind to the timeInterval attribute of an NSDatePicker?

Sadly, no. The timeInterval property of the date picker is not even properly key-value observable. Basically, you're stuck either setting up an action method or using the delegate validation meth …
5
votes

How do I find the correct case of a filename?

Use FSPathMakeRef() on both paths, and then use FSCompareFSRefs() to see if they're the same file/folder. You can then use FSRefMakePath() to get the canonical representation, but if you're displa …
4
votes

Cocoa one row table view or a horizontal list view

If you're okay with Leopard-only, The new NSCollectionView supports horizontal display. Just set the collection view's number of rows to 1 in Interface Builder; it'll even handle the horizontal sc …
3
votes

Why does my nib’s window close immediately?

I'd guess your window is being deallocated (or if under GC, collected) right out from under you. There are about a million possible reasons for this (none of which we can diagnose from one line of …

1 2 next
15 30 50 per page