3
votes
What are the overall consequences of the iPhone NDA going away?
The restriction before was pretty severe. The NDA could have been interpreted to cover just about anything related to iPhone programming. Publishing code samples, discussing how an …
1
vote
What is the void* returned from CGBitmapContextGetData?
It's a pointer to the bitmap data. If you're having trouble interpreting it, then the bitmap probably isn't in the format you think it's in (CoreGraphics does some conversions automatically on load …
0
votes
iPhone CoreLocation: How to get the most accurate speed
Disclaimer: I've only played with CoreLocation a bit, I've not tested the accuracy very closely.
I'd expect that you'd get the most accurate results by using the defaults for distanceFilte …
1
vote
add “Now Loading” before UITabBarController tab select?
NSObject's performSelector:withObject:afterDelay: method can be useful here. Display your "Please wait" alert or view, or whatever, then use performSelector:withObject:afterDelay: to start the actu …
1
vote
Have any Professional course (certification program) for iPhone developer?
I don't know of any certification courses, but to add to the list of places to go to get training, Apple's Worldwide Developers Conference is a great learning experience. In addition to several tra …
0
votes
Does adding many many subviews to a viewcontrollers default view make my app slow?
Don't forget to make as many of your views opaque as you can. Transparent views are a major source of performance issues.
…
2
votes
iPhone Uploading unique images to a server running PHP / MYSQL
The simplest solution (assuming you're storing these in a database) is to have an auto-increment field in the database, and use that to rename the file as it's uploaded. That way you'll end up with …
0
votes
Problem Flipping a View
Based on the variable names, it looks like this is adapted from the default "Utility" application template you get from XCode. If the template project works, and yours doesn't, then you've obviousl …
2
votes
How to “blend/merge” two images usingi an objective-c library?
Alpha blending is directly supported by the Quartz graphics engine, so you don't need any additional libraries. You just draw one image, then draw the second image with an alpha of less than 1.0 on …
2
votes
iPhone application is crashing and not leaving behind a .crash log file
A couple of suggestions:
Make sure that you're not actually calling exit(), returning from main(), or otherwise cleanly exiting anywhere in your code. If your application is just …
1
vote
What is the most practical Solution to Data Management using SQLite on the iPhone?
Have you considered implementing this via the NSCoder interface? Not sure that it wouldn't be more trouble than it's worth, but if what you want is to extract all the data out into an in-memory obj …
1
vote
iphone app submission. creating screen shots.
People seem to do it fairly often - I've seen several cases where the "screen shots" were something else entirely. I think as long as you're not deliberately misleading, you'll be fine.
…
0
votes
Why should a self-implemented getter retain and autorelease the returned object?
I haven't seen this pattern before, but it seems fairly pointless to me. I guess the intent is to keep the returned value safe if the client code calls "release" on the parent object. It doesn't re …
3
votes
jpg or png for UIImage — which is more efficient?
I have an application on the store that needs to save intermediate versions of an image as it's being edited. In the original version, I used PNG format for saving, to avoid quality loss from loadi …
0
votes
iPhone - Most memory effecient way to initialize an image?
I haven't seen anyone mention it yet, but the reason you're seeing multiple NSString instances being created by that line is because pathForResource:ofType: has to concatenate strings together to …
