Search Results

12
votes

x86 Assembly on a mac…

After installing any version of Xcode targeting Intel-based Macs, you should be able to write assembly code. Xcode is a suite of tools, only one of which is the IDE, so you don't have to use it if …
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 …
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 …
1
vote

Cocoa - best way to capture key events in NSTextView?

It's important to tell us what you're really trying to accomplish — the higher-level goal that you think capturing key events in an NSTextView will address. For example, when someone asks m …
0
votes

Is there a good GUI SVN app for Mac (better than XCode)

There are several third-party Subversion front-end applications out there as others have mentioned, check them out and see if they meet your needs. Please also file enhancement requests in …
8
votes

In Cocoa do I need to remove an Object from receiving KVO notifications when deallocating it?

You need to use -removeObserver:forKeyPath: to remove the observer before -[NSObject dealloc] runs, so yes, doing it in the -dealloc method of your class woul …
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 …
0
votes

Installing Apache Web Server on 64 Bit Mac

Don't export CFLAGS from your .bash_profile or any other dot file. Your home directory could live on for decades, the system you're currently using is transient. There's a guide on Apple's …
6
votes

Good Git repository viewer for Mac

There are a couple under development. GitNub …
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 …
3
votes

Simple audio input API on a Mac?

The principal framework for audio development in Mac OS X is Core Audio; it's the basis for all audio I/O. There are layers on top of it like Audio Toolbox, Audio Queue Services, QuickTime, and QT …
2
votes

Is it just the iPhone simulator that is restricted to intel only Mac’s?

The iPhone SDK is documented to require an Intel-based Mac. Even if some people may be able to have gotten it to run on some other hardware doesn't mean that it will run correctly, that Apple will …

1 2 3 next
15 30 50 per page