Search Results

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

Understanding reference counting with Cocoa / Objective C

If you're writing code for the desktop and you can target Mac OS X 10.5, you should at least look into using Objective-C garbage collection. It really will simplify most of your development — that …
10
votes

SO iPhone App - anyone else doing one?

I've been thinking of putting together a Cocoa desktop application once Stack Overflow has an API. …
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 …
21
votes

What are best practices that you use when writing Objective-C and Cocoa?

Write unit tests. You can test a lot of things in Cocoa that might be harder in other frameworks. For example, with UI code, you can generally verify that things are connected as …
11
votes

What are best practices that you use when writing Objective-C and Cocoa?

Resist subclassing the world. In Cocoa a lot is done through delegation and use of the underlying runtime that in other frameworks is done through subclassing. For example, in Java you use …
12
votes

What are best practices that you use when writing Objective-C and Cocoa?

Don't write Objective-C as if it were Java/C#/C++/etc. I once saw a team used to writing J2EE web applications try to write a Cocoa desktop application. As if it was a J2EE web application …
33
votes

What are best practices that you use when writing Objective-C and Cocoa?

Use standard Cocoa naming and formatting conventions and terminology rather than whatever you're used to from another environment. There are lots of Cocoa developers out there, an …
11
votes

What’s the nicest way to do observer/observable in objective-c (iphone version)

There are two built-in ways of doing observation in Cocoa: Key-Value Observing and notifications. In neither system do you need to maintain or notify a collection of observers yourself; the frame …
1
vote

Trying to play sound through iPhone Simulator

The first parameter to NSLog is a format string; you're passing [URL description] as the format string to the second use of NSLog. That's bad, because if the description of the URL co …
1
vote

iPhone app using .NET development environment?

The only supported way to develop native iPhone applications is the iPhone SDK. It runs on Mac OS X only, and supports development using the Cocoa Touch frameworks and the Objective-C 2.0 language …
7
votes

Is any Windows simulator available to test iPhone application?

No. The iPhone Simulator is available as part of the iPhone SDK, which is only available for Mac OS X Leopard on Intel-based Macs. …
2
votes

native iPhone database, all data on iPhone

SQLite is part of the supported API available on the iPhone. Also, 50MB isn't really a "large" database. SQLite will handle it without even blinking. …
1
vote

iPhone Xcode project.pbxproj + Subversion = code signing issue?

You can use $(USER) in your build setting definition to include your short user name. For example: CODE_SIGN_IDENTITY = "iPhone Developer: $(USER)"; …
3
votes

iPhone Xcode project.pbxproj + Subversion = code signing issue?

You can base a project or target configuration on the contents of an xcconfig file that is not checked in to Subversion or is otherwise customized per developer. Add an appropriate …

1 2 next
15 30 50 per page