2
votes
I have some RAM to burn - any suggestions?
If you're using Xcode for development, you could probably crank up the number of parallel tasks it runs; the default will be the number of CPUs. (The user default you can use to change this is …
5
votes
Howto articles for iPhone development, Objective C
While you do have to agree to an NDA to get the iPhone SDK, you don't have to physically sign an agreement and send it in, or pay money just to download the SDK. You can sign up for a free Apple D …
3
votes
Reading Other Process’ Memory in Mac OS / BSD
Manipulating a process's memory behind its back is a Bad Thing and is fraught with peril. That's why Mac OS X (like any Unix system) has protected memory, and keeps processes isolated from one ano …
2
votes
_wfopen equivalent under Mac OS X
You just want to open a file handle using a path that may contain Unicode characters, right? Just pass the path in filesystem representation to fopen.
If the …
2
votes
1
vote
1
vote
Developer Setup for Starting Out with Cocoa/Mac Programming
One other suggestion: If you have feature or enhancement requests, or bugs that you've run into, be sure to file them at Apple's Bug Reporter …
2
votes
Rich GUI OS X Frameworks?
Cocoa is the primary framework to use on Mac OS X. It's what Apple uses, it's what most new development uses, and it's where new features are principally added.
If you're coming from WPF, …
5
votes
Any ReSharper equivalent for Xcode?
Xcode has refactoring for C and Objective-C built in. Just select what you'd like to refactor, choose "Refactor..." from either the menu bar or the contextual menu, and you'll get a window includi …
3
votes
Height of NSTextView with one line?
The NSFont class has a method that can give you the size of a rectangle that would enclose a specific attributed string. Get the font used by your text view, create a string that serves as a reaso …
1
vote
How do I open the default mail program with a Subject and Body in a cross-platform way?
Never use Runtime.exec(String) on Mac OS X or any other operating system. If you do that, you'll have to figure out how to properly quote all argument strings and so on; it's a pain a …
6
votes
21
votes
Objective-C: Passing around sets of data
You're on the right track.
Cocoa's collection classes — which all have mutable an immutable variants — are:
NSArray: ordered, can contain an object multiple times
NSD …
1
vote
Is there anything similar to the OS X InputManager on Windows?
I'm pretty sure Windows has an API that developers can use to create new kinds of text input systems. I gather there are a wide variety of text input systems in use in non-Roman-derived markets, m …
18
votes
Change templates in XCode
You wouldn't change the existing templates. In other words, don't modify anything under the /Developer hierarchy (or wherever you installed your developer tools).
Ins …
