4
votes
Objective-C switch using objects?
If you want to use as little code as possible, and your element names and setters are all named so that if elementName is @"foo" then setter is setFoo:, you could do something like:
…
1
vote
Wrap NSButton title
I'm with Sören; If you need a longer description, think about using a tool tip or placing descriptive text in a wrapped text field using the small system font below the radio choices if the descrip …
2
votes
Can you add a property at run-time when coding with Objective-C
Have you tried overriding valueForUndefinedKey: instead? (I do this on a custom NSObject subclass that can have various properties whose names are pulled from a database.)
…
0
votes
How to Extract AppleScript Data from a NSAppleEventDescriptor in Cocoa and Parse it
[[aDescriptor descriptorForKeyword:'seld'] stringValue]
…
0
votes
Objective C : Releasing after removal from an array & reference pointers.
What's [probably] happening is selected points to a deallocated object, not nothing.
I'd try
self.selected = nil;
instead of releasing it expl …
1
vote
Encoding string arguments for URLs
IIRC, slashes should be interpreted properly when they're in the query part of a URL. Did you test to see if it still works without encoded slashses? Otherwise, do something like:
i …
0
votes
Standard (netscape format) HTML Bookmarks Parser -> NSMutable Array of URLS and Names / Folders
Though this isn't a complete implementation of what you want, the first thing that popped into my head was …
1
vote
iPhone Objective C : Saving & Loading UIColor into & from NSUserDefaults
One way of doing it might be to archive it (like with NSColor, though I haven't tested this):
NSData *colorData = [NSKeyedArchiver archivedDataWithRootObject:color];
[[NSUserDefault …
5
votes
@synchronized in a static method
self inside of a class (static) method refers to the class object.
…
3
votes
Is there a cocoa library for advanced date + time handling?
NSCalendar + NSDateComponents?
However, like Peter Hosey said, it's hard to know without knowing what it is you want to do.
…
1
vote
Size discrepancy between size of folder from Finder and from Carbon file manager
The Finder will report file sizes rounded to the nearest multiple of the block size (usually 4 KB) followed by the real size in bytes, and many (most) applications are bundles of files, so the true …
1
vote
Working with multi-page images in an NSImage
I'm not positive, but IIRC if you initialize an NSImage with multi-page TIFF data, you will get one image rep per page. (Probably what peterb was alluding to.)
Edit: Check out …
6
votes
How do I compare strings in objective c?
if ([statusString isEqualToString:@"Wrong"]) {
// do something
}
…
1
vote
NSpoint from NSTextView insertion point
You might be able to do it with an NSTextView subclass, overriding
-drawInsertionPointInRect:color:turnedOn: to cache the drawing rect and using the center of the rect (or some other i …
2
votes
How best to debug a crash within objc_msgSend?
If you use NSZombieEnabled you can at least figure out what class the object is.
…
