Search Results

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 …
0
votes

How to Extract AppleScript Data from a NSAppleEventDescriptor in Cocoa and Parse it

[[aDescriptor descriptorForKeyword:'seld'] stringValue] …
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 …
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

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. …
5
votes

How to get NSImage of generic folder icon on OS X 10.5 and 10.6

[[NSWorkspace sharedWorkspace] iconForFileType:NSFileTypeForHFSTypeCode(kGenericFolderIcon)] (I think) …
8
votes

How careful are you with your return types in Objective-C?

I used to do the return [NSArray arrayWithArray:someMutableArray], but I was slowly convinced that it doesn't offer any real benefit. If a caller of your API is treating a returned obj …
0
votes

In Cocoa, how do you change the line endings of a file to LF?

I'm sure there are more memory-efficient ways, but this might do the job for you: NSStringEncoding usedEncoding; NSMutableString *fileContents = [[NSMutableString alloc] initWithCon …
6
votes

Set contents of webview to html string (cocoa)

[[webView mainFrame] loadHTMLString:htmlString baseURL:someURL]; (Where someURL is used to resolve relative URLs in the HTML source.) …
2
votes

Cocoa WebView cross-thread access

Maybe [yourWebView performSelectorOnMainThread:...] and friends? (Or call a mediating controller class.) …
6
votes

How to conditionally use a new Cocoa API

IIRC, you want to use the 10.6 SDK and set your deployment target (MACOSX_DEPLOYMENT_TARGET) to 10.4 so the 10.5/10.6 symbols are weak-linked. Then you can use the respondsToSelector: …
6
votes

How to make NSTableView scroll to most recently added row?

NSInteger numberOfRows = [tableView numberOfRows]; if (numberOfRows > 0) [tableView scrollRowToVisible:numberOfRows - 1]; Assuming you're adding rows to the end of …