Do you use TouchDB? I am also having problems today, but my error message is
the following:

[__NSCFDictionary objectForKeyedSubscript:]: unrecognized selector sent to
instance 0x1346f480

Maybe it's a completely seperate case, but that brought me to investigate my
TouchDB bindings a bit and I found the following code:

// Compatibility declarations to allow NSArray/NSDictionary subscripting in
iOS with Xcode 4.4.
// The compiler needs to see declarations of these methods to make the class
subscriptable, but
// the iOS 5.1 SDK doesn't contain them on NSArray/NSDictionary. It appears
it isn't necessary
// to actually implement these methods, though...

#if (defined(__IPHONE_OS_VERSION_MAX_ALLOWED) &&
__IPHONE_OS_VERSION_MAX_ALLOWED < 60000)
@interface NSArray (PreiOS6)
- (id)objectAtIndexedSubscript:(NSUInteger)index;
@end
@interface NSMutableArray (PreiOS6)
- (void)setObject: (id)object atIndexedSubscript:(NSUInteger)index;
@end
@interface NSDictionary (PreiOS6)
- (id)objectForKeyedSubscript:(id)key;
@end
@interface NSMutableDictionary (PreiOS6)
- (void)setObject: (id)object forKeyedSubscript:(id)key;
@end

#ifdef GNUSTEP
#define kCFBooleanTrue  ([NSNumber numberWithBool: YES])
#define kCFBooleanFalse ([NSNumber numberWithBool: NO])
#endif


Do you it's possible that they expected some definitions to be made in iOS 6
that weren't made, therefore breaking the TouchDB binding? As I said, maybe
it's a totally unrelated issues, but I'm having issues with opening the app
today as well.



--
View this message in context: 
http://monotouch.2284126.n4.nabble.com/MonoTouch-6-App-Crashes-immediately-in-iOS-5-x-Simulators-tp4657092p4657143.html
Sent from the MonoTouch mailing list archive at Nabble.com.
_______________________________________________
MonoTouch mailing list
[email protected]
http://lists.ximian.com/mailman/listinfo/monotouch

Reply via email to