1
vote
Newbie wants to create a PDF reader for ipod touch - what’s the best approach?
This is pretty trivial. The CGPDFDocument functions will allow you to do anything you'd want to do with a PDF file.
…
1
vote
CPAN/gem-like repository for Objective-C and Cocoa?
I'd be interested in what kind of "basic functions" you're having to implement. There's actually quite a lot already there in the provided libraries, and I wonder if you're just not finding functio …
0
votes
What is a better way to create a game loop on the iPhone other than using NSTimer?
Have you looked at the iPhone developer examples? I think there are some examples (Touch Fighter or CrashLanding, for example) that might be illuminating.
…
0
votes
iPhone application : is-it possible to use a “double” slider to select a price range
I think you can specify multiple thumbs for a single slider if you subclass UISlider, at least I vaguely remember that being possible in MacOSX. But Code Addict is right, you'll probably b …
0
votes
Using Interface Builder for UITableView’s
Unfortunately, it doesn't really work that way - the cells in the tableview are generated by the delegate at run-time. It turns out to be very straightforward code, though. Check out the tableview …
1
vote
How Can I Get Touch Events in an iPhone App’s Hidden Status Bar’s Area?
I haven't had this problem, but then again, I'm not using OpenGL views. When you launch in Landscape mode, are you setting the StatusBarHidden property of the appropriate ViewController?
…
7
votes
Invalid iPhone Application Binary
It's been my experience that XCode occasionally gets confused about which signing certificate to use. I got into the habit of quitting and restarting XCode after any change to the code signing sett …
0
votes
How do I scroll a UITableView to a section that contains no rows?
I think a blank row is probably the only way to go there. Is it possible to redesign the UI such that the "empty" row can display something useful?
I say try it out, and see what the perfor …
1
vote
How to get the RGB values for a pixel on an image on the iphone
To do something similar in my application, I created a small off-screen CGImageContext, and then rendered the UIImage into it. This allowed me a fast way to extract a number of pixels at once. This …
0
votes
What’s the nicest way to do observer/observable in objective-c (iphone version)
That's not generally the way that it's done. Take a look at the discussion here, …
4
votes
Pushing pixels on the iPhone
You need to create a CGImageContext, in a bitmap format that you can directly manipulate. Then, you can draw that image on the screen, use it as a GL texture, or whatever.
Pretty simple stu …
1
vote
Why does my OpenGL ES iPhone game flicker when I first turn on the phone?
Hmm. I haven't done much with OpenGL on the iPhone, but I have to say I haven't noticed this behavior with other applications. I'd suspect it's something to do with how you're switching active fram …
9
votes
How to share custom data between iPhone applications?
In addition to what's already been mentioned, the iPhone documentation on code signing seems to imply that applications signed with the same identity can access the same Keychain items. If you need …
1
vote
Repeating background image in native iPhone app
I think you probably want to create a Pattern. I'll update this answer when I find the relevant documentation.
…
2
votes
Frogger for iPhone
You'll need to derive a subclass of UIView and override the keyDown: method in order to get keypresses. There's an NSTimer class, that's good for doing periodic updates, and UIImage, for loading an …
