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. …
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 …
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 …
6
votes
Drag-and-drop files onto an NSTableView?
NSTableView handles drag-and-drop differently from generic views, which is overall a good thing. It means that you don't have to manually handle the complicated highlighting, cell tracking and inse …
1
vote
How do you sync a Core-Data application between a Mac and a iPhone?
Core Data does not exist on the iPhone, so you'll need to use something else for the iPhone portion at least. In fact, if you want to share a significant amount of code between the iPhone and Mac …
1
vote
What should I replace this code with?
Generally, you do not want to base the display of one cell on the value of another one. A more MVC-compliant approach is to have the checkbox control a property of that row's object (say, isA …
6
votes
How do I fix my application from leaking when using Qt 4.5?
Generally, when you see this problem in your code, you bracket the offending code block with NSAutoreleasePool* pool = [[NSAutoreleasePool alloc] init]; before and [pool release] …
