Now I’m testing app on this phone and all just fine.
What the problem? on iOS 4.3 and 5.0 works fine
I’m using SDK iOS 5 (valid architectures set to armv6 and armv7)
EDIT this iOs device is jail broken. Can it be source of the problem?
EDIT 2 I’ve get stack. This is appeared in release configuration
#0 0x31dd594c in __kill ()
#1 0x31dd5940 in kill ()
#2 0x31dd5934 in raise ()
#3 0x31deccfe in abort ()
#4 0x374ef848 in __gnu_cxx::__verbose_terminate_handler() ()
#5 0x300166c0 in _objc_terminate ()
#6 0x374ecf3c in __cxxabiv1::__terminate(void (*)()) ()
#7 0x374ecfb4 in std::terminate() ()
#8 0x374ed0dc in __cxa_throw ()
#9 0x300165e4 in objc_exception_throw ()
#10 0x30224026 in +[NSException raise:format:arguments:] ()
#11 0x30223fc6 in +[NSException raise:format:] ()
#12 0x305564b4 in -[NSKeyedUnarchiver initForReadingWithData:] ()
#13 0x3094927c in -[UINib instantiateWithOptions:owner:loadingResourcesFromBundle:] ()
#14 0x30949090 in -[NSBundle(NSBundleAdditions) loadNibNamed:owner:options:] ()
#15 0x308f131c in -[UIApplication _loadMainNibFile] ()
#16 0x308f0f9c in -[UIApplication _runWithURL:sourceBundleID:] ()
#17 0x309374b0 in -[UIApplication handleEvent:withNewEvent:] ()
#18 0x30936cf0 in -[UIApplication sendEvent:] ()
#19 0x3093687c in _UIApplicationHandleEvent ()
#20 0x3204696c in PurpleEventCallback ()
#21 0x30254a76 in CFRunLoopRunSpecific ()
#22 0x3025416a in CFRunLoopRunInMode ()
#23 0x308f0354 in -[UIApplication _run] ()
#24 0x308eea94 in UIApplicationMain ()
OK. I’m figured out. Referencing to this question I’m resolved problem. On Xcode 4 file settings appeared on the right view.
So, if you set deployment target of your app you must set also deployment target of xib files. In my case iOS deployment target was 3.0 and deployment target of xibs – are last SDK (5.0). I think automatic set deployment target for all xibs feature need to be implemented in Xcode.