November 2010
3 posts
1 tag
Flickruppa • iPhoto export to Flickr. Simplified. →
darren131:
If you use iPhoto 8+ and Flickr then you should check out this awesome plugin. Allows for simple export from iPhoto to Flickr (including EXIF, background uploading, GPS location, videos, sets, etc, etc, etc…) Brought to you by the same madman who built Charles, Birdbrain, Mobile Fotos, etc
1 tag
Simulate memory warnings on the iPhone
When debugging on the simulator you can simulate a memory warning in your code by using the Simulate Memory Warning option in the Hardware menu. But on the device it isn’t so easy, but it’s really important to have thoroughly tested your application in the presence of memory warnings.
What I do is add some code to my App Delegate to periodically send a memory warning automatically. Usually every...
1 tag
Warnings for API calls that won't work in iOS 3
When you build for iOS 4 you don’t get warnings for API calls that don’t exist in iOS 3 so it can be hard to see when it’s going to crash.
In order to get warnings for that usage you can edit /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.2.sdk/usr/include/AvailabilityInternal.h, you have to update that URL for the appropriate SDK version, and this is only for the...