Search Results

1
vote

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

If you actually want to run your binary on the device, not just the simulator, you need the advice from the following page: …
1
vote

Delegate as external class in Objective-C

Your Control1Delegate object is getting destroyed soon after it is created. All top-level Nib objects must be retained if you want to keep them alive. Refer to the …
3
votes

iPhone SDK - Converting project from 2.1 to 2.2.1

It's safe to install. You don't have to "convert" anything. Your projects will continue to work. There are no new API's in 2.2.1. The documentation is a single page that tells you to refer to the 2 …
1
vote

How to properly develop for the iPhone on a PowerPC Mac?

What does your codesign script look like? I used to use this one when I was working on a G4: (The original "/usr/bin/codesign" should be renamed "/usr/bin/codesign.orig" and then save this script a …
1
vote

XCode and iPhone Compiler Warning

What you did is not a compile-time error, because the Objective-C runtime checks at runtime if an object can respond to the message you send to it. I recommend adding this build setting to …
2
votes

iPhone SDK: Convert Byte Array to NSString?

This is wrong: [data appendBytes:&buffer length:len]; It should be: [data appendBytes:buffer length:len]; …
3
votes

profile doesn’t match application identifier

Usually you would use just "com.gfeed.ride" as your identifier, and XCode will automatically take care of the "49776ZQRBG" part. …