Search Results

3
votes

CPAN/gem-like repository for Objective-C and Cocoa?

Daniel mentioned http://cocoadev.com. More specifically, check out …
2
votes

Height of NSTextView with one line?

It would be more normal to be using an NSTextField than an NSTextView for a single line of text. With NSTextField, just do the following: [textField setFont:myFont]; [textFi …
0
votes

How to tell if the user’s using 24 hour time using Cocoa

NSShortTimeDateFormatString is deprecated, and I believe it also effectively doesn't work in 10.5 and later. See the 10.4 and 10.5 Foundation release notes. Dumping all defaults is a good way to …
1
vote

Why are there more files/hardlinks with the same iNode than the reference count shows?

Are you looking at Time Machine backups? Are there directory hardlinks involved? If directory A contains directories B1 and B2 which are hardlinked, a file with the same inode would be ins …
0
votes

How can I force invalidation of a running Cocoa program without additional custom code?

Minimize the window and unminimize it. That happens to force a redraw. …
1
vote

Determine a process’s architecture

Can you use NSRunningApplication on OSes where it is available, and fall back to sysctl stuff when it isn't? I don't think sysctl stuff is supportable API the way most stuff is, but if you're only …
2
votes

How does one automatically attach a debugger to a process at process start on OS X?

Use gdb --wait. For example, try gdb --wait TextEdit from the command line, then launch TextEdit. …
0
votes

Getting involved with the Mac developer community

My favorite source besides the docs are the Cocoa weblogs. Planet Cocoa aggregates some of them. Apple's …
1
vote

apple mail adds \n about every 72 characters or so - how do I strip these and preserve actual \n

It looks to me like the soft breaks are all preceded by a space character, while the hard breaks are all not. When I try to compose a message that has a space right before a hard break, Mai …
11
votes

Why doesn’t OS X have the same flickering problems that Windows does?

Mac OS X has double buffered windows. You don't have to do anything to make it happen. It's behind the scenes …
3
votes

How do I get the GCC __attribute__ ((constructor)) to work under OSX?

(a) Your code works for me compiling and running on SnowLeopard in Xcode 3.2. (b) I'm not sure when stdout is guaranteed to have been set up. You're running code before main. Why not upda …
1
vote

Mac/iPhone: Is there a way to get a thread identifier without using Objective-C?

See pthread_getname_np. Unfortunately NSThread's name is not currently pushed down to that. The NSThread name is just an ivar, so there will be no way to get at it except th …