This gist shows how to create a GIF screencast using only free OS X tools: QuickTime, ffmpeg, and gifsicle.
To capture the video (filesize: 19MB), using the free "QuickTime Player" application:
Seems to help now to give the path to the symbols that match the version of iOS that produced the crash. | |
For iOS 5.1: | |
/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/PrivateFrameworks/DTDeviceKit.framework/Versions/A/Resources/symbolicatecrash -v crashfile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/DeviceSupport/5.1\ \(9B176\)/Symbols | |
For iOS 5.0.1: | |
/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/PrivateFrameworks/DTDeviceKit.framework/Versions/A/Resources/symbolicatecrash -v crashfile ~/Library/Developer/Xcode/iOS\ DeviceSupport/5.0.1\ \(9A405\)/Symbols |
// .h | |
@interface NSNull (null) | |
+ (void) setWarnsOnNullAccess:(BOOL) warnsOnNullAccess; | |
- (BOOL) boolValue; | |
- (char) charValue; | |
- (NSDecimal) decimalValue; | |
- (double) doubleValue; | |
- (float) floatValue; | |
- (int) intValue; |
# in 2012 by Johannes Fahrenkrug, http://springenwerk.com | |
# See you at WWDC! | |
require 'rubygems' | |
require 'open-uri' | |
class WWDC2012 | |
def self.announced? | |
begin | |
title = open('https://developer.apple.com/wwdc/') do |f| |
// | |
// NSObject+BlockObservation.h | |
// Version 1.0 | |
// | |
// Andy Matuschak | |
// [email protected] | |
// Public domain because I love you. Let me know how you use it. | |
// | |
#import <Cocoa/Cocoa.h> |