Titanium JIRA Archive
Appcelerator Community (AC)

[AC-3131] iOS: UI - TableView.appendRow method fails after tableview is emptied with setData()

GitHub Issuen/a
TypeBug
Priorityn/a
StatusClosed
ResolutionNeeds more info
Resolution Date2011-12-29T06:03:09.000+0000
Affected Version/sn/a
Fix Version/sn/a
ComponentsTitanium SDK & CLI
Labelsn/a
ReporterRobert Richter
AssigneePaul Dowsett
Created2011-10-14T00:15:39.000+0000
Updated2016-03-08T07:48:11.000+0000

Description

Problem

[Titanium.UI.TableView.appendRow()](http://developer.appcelerator.com/apidoc/mobile/latest/Titanium.UI.TableView.appendRow-method.html) fails after table is emptied with table.setData([])

Test case

var win = Ti.UI.createWindow();
var table = Ti.UI.createTableView();
 
for(var i = 1; i < 200; i +=1 )
{
    table.appendRow(Ti.UI.createTableViewRow({
        title:'Row ' + i,
    }));

    // 1) Uncomment next line to reproduce bug:
    if(i % 100 === 0) table.setData([]);
    
    // 2) There has to be some timing issue which is shown here:
    // cell animation did not finish
    // try to delay appending the next row
    /*if(i % 100 === 0){
      table.setData([]);
      
      // simple approch to delay the next appendRow
      var j = 100000000;
      while(j > 0){
        
        j--;
      }
    }*/
    
}
 
win.add(table);
win.open();

Logs

Process:         BugTest [5607]
Path:            /Users/USER/Library/Application Support/iPhone Simulator/*/BugTest.app/BugTest
Identifier:      BugTest
Version:         ??? (???)
Code Type:       X86 (Native)
Parent Process:  launchd [126]

Date/Time:       2011-10-14 10:14:41.424 +0200
OS Version:      Mac OS X 10.7.1 (11B26)
Report Version:  9

Interval Since Last Report:          874826 sec
Crashes Since Last Report:           71
Per-App Crashes Since Last Report:   15
Anonymous UUID:                      333E60C5-3ADD-4302-A519-80E3BE596ED0

Crashed Thread:  0  Dispatch queue: com.apple.main-thread

Exception Type:  EXC_CRASH (SIGABRT)
Exception Codes: 0x0000000000000000, 0x0000000000000000

Application Specific Information:
iPhone Simulator 238.2, iPhone OS 4.3.2 (iPhone (Retina)/8H7)
iPhone Simulator 238.2, iPhone OS 4.3.2 (iPhone (Retina)/8H7)
 
*** Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'Invalid update: invalid number of rows in section 0.  The number of rows contained in an existing section after the update (0) must be equal to the number of rows contained in that section before the update (0), plus or minus the number of rows inserted or deleted from that section (1 inserted, 0 deleted).'
*** Call stack at first throw:
(
	0   CoreFoundation                      0x025d75a9 __exceptionPreprocess + 185
	1   libobjc.A.dylib                     0x0272b313 objc_exception_throw + 44
	2   CoreFoundation                      0x0258fef8 +[NSException raise:format:arguments:] + 136
	3   Foundation                          0x0093c3bb -[NSAssertionHandler handleFailureInMethod:object:file:lineNumber:description:] + 116
	4   UIKit                               0x00bbfe8b -[UITableView(_UITableViewPrivate) _endCellAnimationsWithContext:] + 8420
	5   UIKit                               0x00baed36 -[UITableView insertRowsAtIndexPaths:withRowAnimation:] + 56
	6   BugTest                             0x000aa7fe -[TiUITableView dispatchAction:] + 7774
	7   Foundation                          0x008c094e __NSThreadPerformPerform + 251
	8   CoreFoundation                      0x025b88ff __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 15
	9   CoreFoundation                      0x0251688b __CFRunLoopDoSources0 + 571
	10  CoreFoundation                      0x02515d86 __CFRunLoopRun + 470
	11  CoreFoundation                      0x02515840 CFRunLoopRunSpecific + 208
	12  CoreFoundation                      0x02515761 CFRunLoopRunInMode + 97
	13  GraphicsServices                    0x041ad1c4 GSEventRunModal + 217
	14  GraphicsServices                    0x041ad289 GSEventRun + 115
	15  UIKit                               0x00b4fc93 UIApplicationMain + 1160
	16  BugTest                             0x00003cfa main + 410
	17  BugTest                             0x000025c5 start + 53
)
 
terminate called throwing an exception
abort() called

Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
0   libsystem_kernel.dylib        	0x948d99c6 __pthread_kill + 10
1   libsystem_c.dylib             	0x92fd2f78 pthread_kill + 106
2   libsystem_c.dylib             	0x92fc3bdd abort + 167
3   libc++abi.dylib               	0x918b7921 abort_message + 94
4   libc++abi.dylib               	0x918b51bc default_terminate() + 36
5   libobjc.A.dylib               	0x0272b23b _objc_terminate + 103
6   libc++abi.dylib               	0x918b51fe safe_handler_caller(void (*)()) + 15
7   libc++abi.dylib               	0x918b5268 std::terminate() + 23
8   libc++abi.dylib               	0x918b62a0 __cxa_throw + 112
9   libobjc.A.dylib               	0x0272b416 objc_exception_throw + 303
10  Foundation                    	0x008c0b7c __NSThreadPerformPerform + 809
11  CoreFoundation                	0x025b88ff __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 15
12  CoreFoundation                	0x0251688b __CFRunLoopDoSources0 + 571
13  CoreFoundation                	0x02515d86 __CFRunLoopRun + 470
14  CoreFoundation                	0x02515840 CFRunLoopRunSpecific + 208
15  CoreFoundation                	0x02515761 CFRunLoopRunInMode + 97
16  GraphicsServices              	0x041ad1c4 GSEventRunModal + 217
17  GraphicsServices              	0x041ad289 GSEventRun + 115
18  UIKit                         	0x00b4fc93 UIApplicationMain + 1160
19  BugTest                       	0x00003cfa main + 410 (main.m:36)
20  BugTest                       	0x000025c5 start + 53

Thread 1:
0   libsystem_kernel.dylib        	0x948da02e __workq_kernreturn + 10
1   libsystem_c.dylib             	0x92fd2ccf _pthread_wqthread + 773
2   libsystem_c.dylib             	0x92fd46fe start_wqthread + 30

Thread 2:
0   libsystem_kernel.dylib        	0x948da90a kevent + 10
1   libdispatch_sim.dylib         	0x040bcf36 _dispatch_mgr_invoke + 237
2   libdispatch_sim.dylib         	0x040bd333 _dispatch_queue_invoke + 162
3   libdispatch_sim.dylib         	0x040bd593 _dispatch_worker_thread2 + 261
4   libsystem_c.dylib             	0x92fd2b24 _pthread_wqthread + 346
5   libsystem_c.dylib             	0x92fd46fe start_wqthread + 30

Thread 3:: WebThread
0   libsystem_kernel.dylib        	0x948d7c22 mach_msg_trap + 10
1   libsystem_kernel.dylib        	0x948d71f6 mach_msg + 70
2   CoreFoundation                	0x025b8d86 __CFRunLoopServiceMachPort + 150
3   CoreFoundation                	0x02515e74 __CFRunLoopRun + 708
4   CoreFoundation                	0x02515840 CFRunLoopRunSpecific + 208
5   CoreFoundation                	0x02515761 CFRunLoopRunInMode + 97
6   WebCore                       	0x037dc903 _ZL12RunWebThreadPv + 499
7   libsystem_c.dylib             	0x92fd0ed9 _pthread_start + 335
8   libsystem_c.dylib             	0x92fd46de thread_start + 34

Thread 4:
0   libsystem_kernel.dylib        	0x948d983e __psynch_cvwait + 10
1   libsystem_c.dylib             	0x92fd4e21 _pthread_cond_wait + 827
2   libsystem_c.dylib             	0x92f8542c pthread_cond_wait$UNIX2003 + 71
3   Foundation                    	0x008d23ad -[NSCondition wait] + 310
4   Foundation                    	0x008c01dd -[NSObject(NSThreadPerformAdditions) performSelector:onThread:withObject:waitUntilDone:modes:] + 966
5   Foundation                    	0x008d2506 -[NSObject(NSThreadPerformAdditions) performSelectorOnMainThread:withObject:waitUntilDone:] + 184
6   BugTest                       	0x0006c215 -[TiWindowProxy open:] + 789 (TiWindowProxy.m:372)
7   CoreFoundation                	0x02547c7d __invoking___ + 29
8   CoreFoundation                	0x02547b51 -[NSInvocation invoke] + 145
9   BugTest                       	0x00057c99 -[KrollMethod call:] + 3081 (KrollMethod.m:249)
10  BugTest                       	0x0005673e KrollCallAsFunction + 542 (KrollMethod.m:42)
11  BugTest                       	0x0029f35c TI::TiCallbackObject<TI::TiObject>::call(TI::TiExcState*, TI::TiObject*, TI::TiValue, TI::ArgList const&) + 346 (TiCallbackObjectFunctions.h:396)
12  BugTest                       	0x0027bc98 TI::Interpreter::privateExecute(TI::Interpreter::ExecutionFlag, TI::RegisterFile*, TI::TiExcState*, TI::TiValue*) + 44554 (Interpreter.cpp:3645)
13  BugTest                       	0x0027f5ab TI::Interpreter::execute(TI::ProgramExecutable*, TI::TiExcState*, TI::ScopeChainNode*, TI::TiObject*, TI::TiValue*) + 551 (Interpreter.cpp:741)
14  BugTest                       	0x002511c5 TI::evaluate(TI::TiExcState*, TI::ScopeChain&, TI::SourceCode const&, TI::TiValue) + 287 (Completion.cpp:70)
15  BugTest                       	0x00286661 TiEvalScript + 309 (TiBase.cpp:62)
16  BugTest                       	0x0004bab2 -[KrollBridge evalFileOnThread:context:] + 2082 (KrollBridge.mm:428)
17  BugTest                       	0x00053177 -[KrollInvocation invoke:] + 135 (KrollContext.mm:100)
18  BugTest                       	0x0005103e -[KrollContext invokeOnThread:method:withObject:callback:selector:] + 286 (KrollContext.mm:959)
19  BugTest                       	0x0004b27e -[KrollBridge evalFile:callback:selector:] + 126 (KrollBridge.mm:450)
20  BugTest                       	0x0004abc3 -[KrollBridge didStartNewContext:] + 2579 (KrollBridge.mm:580)
21  BugTest                       	0x0004fcce -[KrollContext main] + 3214 (KrollContext.mm:1118)
22  Foundation                    	0x008abcf4 -[NSThread main] + 81
23  Foundation                    	0x008abc80 __NSThread__main__ + 1387
24  libsystem_c.dylib             	0x92fd0ed9 _pthread_start + 335
25  libsystem_c.dylib             	0x92fd46de thread_start + 34

Thread 0 crashed with X86 Thread State (32-bit):
  eax: 0x00000000  ebx: 0x918b8330  ecx: 0xbfffdf2c  edx: 0x948d99c6
  edi: 0xac3f82c0  esi: 0x00000006  ebp: 0xbfffdf48  esp: 0xbfffdf2c
   ss: 0x00000023  efl: 0x00000246  eip: 0x948d99c6   cs: 0x0000000b
   ds: 0x00000023   es: 0x00000023   fs: 0x00000000   gs: 0x0000000f
  cr2: 0x0da4ebfe
Logical CPU: 0

Binary Images:
    0x1000 -   0x3bcfff +BugTest (??? - ???) <861AF82C-19AF-345D-AFAD-F1705530E68C> /Users/USER/Library/Application Support/iPhone Simulator/*/BugTest.app/BugTest
  0x628000 -   0x64affb +iAd (??? - ???) <57D7BA93-38C3-3910-87AC-FDDAE9E071BC> /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.3.sdk/System/Library/Frameworks/iAd.framework/iAd
  0x667000 -   0x81bfff +libicucore.A.dylib (46.0.0 - compatibility 1.0.0) <C1933DA1-1771-36F1-899F-6F670BF87F47> /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.3.sdk/usr/lib/libicucore.A.dylib
  0x897000 -   0xa58fe3 +Foundation (751.58.0 - compatibility 300.0.0) <D8A15932-E0A6-3B0E-8B81-CBDD698A0B41> /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.3.sdk/System/Library/Frameworks/Foundation.framework/Foundation
  0xb35000 -  0x1052feb +UIKit (1500.0.0 - compatibility 1.0.0) <81D2A11F-9982-3F0D-9085-EFFBB934EC1A> /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.3.sdk/System/Library/Frameworks/UIKit.framework/UIKit
 0x129f000 -  0x14d5ff7  com.apple.CoreGraphics (1.600.0 - ???) <B06263D1-8D82-31E5-963B-6CE8D9BD785A> /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.3.sdk/System/Library/Frameworks/CoreGraphics.framework/CoreGraphics
 0x1539000 -  0x1587fe3 +AddressBook (30.0.0 - compatibility 1.0.0) <C8B63816-DE70-38F2-A022-3C546BECAF32> /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.3.sdk/System/Library/Frameworks/AddressBook.framework/AddressBook
 0x15b2000 -  0x1698ffb +AddressBookUI (33.0.0 - compatibility 1.0.0) <2F235765-94B5-39E3-92A8-137E0AF3990E> /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.3.sdk/System/Library/Frameworks/AddressBookUI.framework/AddressBookUI
 0x171c000 -  0x1862fff +CFNetwork (485.13.9 - compatibility 1.0.0) <A1F74D18-E407-3761-A62A-5E9E08B943FB> /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.3.sdk/System/Library/Frameworks/CFNetwork.framework/CFNetwork
 0x18e1000 -  0x1930ff7 +CoreLocation (1079.25.0 - compatibility 1.0.0) <E8C1AD3D-A091-3DEC-92C3-CC49EE7880A4> /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.3.sdk/System/Library/Frameworks/CoreLocation.framework/CoreLocation
 0x1959000 -  0x1a65ff7 +MapKit (14.0.0 - compatibility 1.0.0) <B9B93D13-270E-3832-99A0-DD9A12DA06C8> /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.3.sdk/System/Library/Frameworks/MapKit.framework/MapKit
 0x1ae7000 -  0x1b49feb +MessageUI (??? - ???) <E8828BCB-EECE-30F0-8504-4C17D3E49A79> /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.3.sdk/System/Library/Frameworks/MessageUI.framework/MessageUI
 0x1b83000 -  0x1bc5fe3 +MobileCoreServices (20.0.0 - compatibility 1.0.0) <4139B8C9-F16B-379C-9283-1906AD01145C> /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.3.sdk/System/Library/Frameworks/MobileCoreServices.framework/MobileCoreServices
 0x1be0000 -  0x1bf2ffb +OpenGLES (??? - ???) <D6E15545-E38D-31FB-AD66-397477C1C463> /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.3.sdk/System/Library/Frameworks/OpenGLES.framework/OpenGLES
 0x1bfa000 -  0x1ceefff +QuartzCore (1.7.0 - compatibility 1.2.0) <CE2C9FC7-5C1C-3B9D-BF33-0DE59A907A01> /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.3.sdk/System/Library/Frameworks/QuartzCore.framework/QuartzCore
 0x1d5d000 -  0x1da7ffb +SystemConfiguration (381.0.0 - compatibility 1.0.0) <C2EAA2F3-8A57-3BF8-8963-E255EFF601E5> /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.3.sdk/System/Library/Frameworks/SystemConfiguration.framework/SystemConfiguration
 0x1dc6000 -  0x1e4dff7 +libsqlite3.dylib (9.6.0 - compatibility 9.0.0) <747D18D9-6205-3A7E-A8FA-D858CD3D023E> /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.3.sdk/usr/lib/libsqlite3.dylib
 0x1e60000 -  0x1e6efeb +libz.1.dylib (1.2.3 - compatibility 1.0.0) <7852E046-088B-310A-9659-9C410E97AB4E> /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.3.sdk/usr/lib/libz.1.dylib
 0x1e73000 -  0x2021fe7 +AudioToolbox (296.0.0 - compatibility 1.0.0) <221FE2D0-7C77-3175-814E-0B413861CB95> /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.3.sdk/System/Library/Frameworks/AudioToolbox.framework/AudioToolbox
 0x207a000 -  0x2198fff +MediaPlayer (??? - ???) <E7E6B262-5E18-37E4-A3A0-054B633472FF> /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.3.sdk/System/Library/Frameworks/MediaPlayer.framework/MediaPlayer
 0x223e000 -  0x22f8ff7 +AVFoundation (2.0.0 - compatibility 1.0.0) <CC9E1832-52EF-30BC-A380-C75039C00B4C> /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.3.sdk/System/Library/Frameworks/AVFoundation.framework/AVFoundation
 0x2373000 -  0x2472ffb +libxml2.2.dylib (10.3.0 - compatibility 10.0.0) <AF7C1D78-D316-3ACB-BDA6-6B248B03CB9F> /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.3.sdk/usr/lib/libxml2.2.dylib
 0x2493000 -  0x249bffb +StoreKit (??? - ???) <0A6798AB-46CF-3DCB-9FA1-ED6A3B1C2C28> /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.3.sdk/System/Library/Frameworks/StoreKit.framework/StoreKit
 0x24a4000 -  0x24b1ffb +ExternalAccessory (??? - ???) <50B66003-9096-383D-B2EA-258FEEE7E1BF> /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.3.sdk/System/Library/Frameworks/ExternalAccessory.framework/ExternalAccessory
 0x24bf000 -  0x24d0ffe +libSystem.dylib (125.0.0 - compatibility 1.0.0) <8DF0AFCD-FFA5-3049-88E2-7410F8398749> /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.3.sdk/usr/lib/libSystem.dylib
 0x24e4000 -  0x2633ffb +CoreFoundation (550.58.1 - compatibility 150.0.0) <F8326955-5E24-3FEC-A74D-9515CA90419B> /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.3.sdk/System/Library/Frameworks/CoreFoundation.framework/CoreFoundation
 0x2725000 -  0x27f7bf7 +libobjc.A.dylib (227.0.0 - compatibility 1.0.0) <452B1FE5-AB3A-3B95-B350-7ED4CFDCBC11> /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.3.sdk/usr/lib/libobjc.A.dylib
 0x2809000 -  0x29a8ffb +JavaScriptCore (533.17.9 - compatibility 1.0.0) <361EF89D-6E87-3FFB-BB4C-1E7C4F508F95> /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.3.sdk/System/Library/PrivateFrameworks/JavaScriptCore.framework/JavaScriptCore
 0x29fb000 -  0x2a3ffff +AppSupport (29.0.0 - compatibility 1.0.0) <4099D271-B230-3F7F-AAAD-BFC18581FB13> /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.3.sdk/System/Library/PrivateFrameworks/AppSupport.framework/AppSupport
 0x2a64000 -  0x2b48ffb +WebKit (533.17.9 - compatibility 1.0.0) <2B179B0E-B1D9-397C-94E1-CC6419EF73F8> /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.3.sdk/System/Library/PrivateFrameworks/WebKit.framework/WebKit
 0x2bc2000 -  0x2bd5fff +SpringBoardServices (??? - ???) <97993B29-B044-3476-8F17-0F427B153EA0> /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.3.sdk/System/Library/PrivateFrameworks/SpringBoardServices.framework/SpringBoardServices
 0x2be1000 -  0x2beafff +ProtocolBuffer (??? - ???) <7932A828-9C35-3538-8BE8-C0561790D9A5> /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.3.sdk/System/Library/PrivateFrameworks/ProtocolBuffer.framework/ProtocolBuffer
 0x2bf3000 -  0x2cd8ff7 +ImageIO (??? - ???) <8B695EFF-40E7-3F0E-9E61-8D7727E3FA6E> /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.3.sdk/System/Library/Frameworks/ImageIO.framework/ImageIO
 0x2d04000 -  0x2d8dfeb +CoreTelephony (1100.11.0 - compatibility 1.0.0) <CE50F8CE-6A1C-333E-800C-16A10BB20680> /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.3.sdk/System/Library/Frameworks/CoreTelephony.framework/CoreTelephony
 0x2dd4000 -  0x3bb6fef +WebCore (533.17.9 - compatibility 1.0.0) <E1DCFE02-4380-34BC-B74F-775D3026B3E7> /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.3.sdk/System/Library/PrivateFrameworks/WebCore.framework/WebCore
 0x40b3000 -  0x40b4ffe +libSystem.override.dylib (??? - ???) <546BA693-1F43-321D-99A9-D0F87D7AADF1> /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.3.sdk/usr/lib/system/libSystem.override.dylib
 0x40b9000 -  0x40c1fef +libdispatch_sim.dylib (161.5.0 - compatibility 1.0.0) <F3329314-5F85-337E-8F4A-AB0285B42DE5> /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.3.sdk/usr/lib/system/libdispatch_sim.dylib
 0x40ca000 -  0x40d1fff +libnotify_sim.dylib (78.1.0 - compatibility 1.0.0) <27896AC9-514B-3FD3-B786-40EB0612C3A5> /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.3.sdk/usr/lib/system/libnotify_sim.dylib
 0x40d8000 -  0x40d9fff +libsystem_sim_blocks.dylib (50.0.0 - compatibility 1.0.0) <76718763-A9E1-3E11-A688-6AC7D9D39C80> /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.3.sdk/usr/lib/system/libsystem_sim_blocks.dylib
 0x40dd000 -  0x40e5fff +libsystem_sim_dnssd.dylib (??? - ???) <3045B68F-1912-3766-B16F-8CA65B85D868> /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.3.sdk/usr/lib/system/libsystem_sim_dnssd.dylib
 0x40eb000 -  0x4105fff +libsystem_sim_info.dylib (??? - ???) <9A2BB28C-08C8-3CF5-8B64-A140838C5B95> /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.3.sdk/usr/lib/system/libsystem_sim_info.dylib
 0x4110000 -  0x4174fe7 +Security (??? - ???) <2EEF9FD7-0358-30A4-B07B-1C2451ED6C3A> /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.3.sdk/System/Library/Frameworks/Security.framework/Security
 0x419c000 -  0x419fffc +IOKit (275.0.0 - compatibility 1.0.0) <7CC17486-140F-33E0-BC67-54AC9E705428> /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.3.sdk/System/Library/Frameworks/IOKit.framework/IOKit
 0x41a7000 -  0x41b7fef +GraphicsServices (14.0.0 - compatibility 1.0.0) <D0957E1E-6259-3929-9D26-B654EA28DD4A> /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.3.sdk/System/Library/PrivateFrameworks/GraphicsServices.framework/GraphicsServices
 0x41c8000 -  0x4241ff7 +CoreText (??? - ???) <A74AB11E-F03E-3C1C-97AE-0AC88CAE9EA1> /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.3.sdk/System/Library/Frameworks/CoreText.framework/CoreText
 0x4273000 -  0x4327fe7 +ProofReader (115.1.0 - compatibility 1.0.0) <ED47FCBA-5E6A-350D-877E-401872BE77A7> /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.3.sdk/System/Library/PrivateFrameworks/ProofReader.framework/ProofReader
 0x433e000 -  0x4341ffb +libAccessibility.dylib (??? - ???) <32CF5FC2-C4E8-3E1E-BF83-69F88833D4E0> /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.3.sdk/usr/lib/libAccessibility.dylib
 0x4349000 -  0x4378fe3 +PrintKit (68.0.0 - compatibility 1.0.0) <58FDAC14-F8CD-3D2D-B882-684F64348C8C> /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.3.sdk/System/Library/PrivateFrameworks/PrintKit.framework/PrintKit
 0x438c000 -  0x438dffb +DataMigration (??? - ???) <EE9192E1-0764-38FF-B286-372920BE373E> /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.3.sdk/System/Library/PrivateFrameworks/DataMigration.framework/DataMigration
 0x4392000 -  0x4395ffb +MobileInstallation (??? - ???) <EF91E847-11A7-3B5A-98C4-435258D3CBD1> /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.3.sdk/System/Library/PrivateFrameworks/MobileInstallation.framework/MobileInstallation
 0x439b000 -  0x43cffe7 +Bom (157.0.0 - compatibility 2.0.0) <D77B73EF-B6B8-34DA-9780-3EF4D9B2C04B> /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.3.sdk/System/Library/PrivateFrameworks/Bom.framework/Bom
 0x43dc000 -  0x43e9feb +libbz2.1.0.dylib (1.0.5 - compatibility 1.0.0) <3B53F7D3-EEC0-3474-A969-261D29B0CB3A> /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.3.sdk/usr/lib/libbz2.1.0.dylib
 0x43ee000 -  0x43f9fff +AggregateDictionary (??? - ???) <DDE3024C-18C1-34CB-8F0C-7D01F498D44B> /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.3.sdk/System/Library/PrivateFrameworks/AggregateDictionary.framework/AggregateDictionary
 0x4404000 -  0x441afeb +libbsm.0.dylib (??? - ???) <8CEB4607-FC29-362B-9BEE-F004A0AD03CB> /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.3.sdk/usr/lib/libbsm.0.dylib
 0x4423000 -  0x449cfef +CoreAudio (??? - ???) <5204A2C9-BC1D-341C-9A1E-B19DC78E3A72> /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.3.sdk/System/Library/Frameworks/CoreAudio.framework/CoreAudio
 0x44d2000 -  0x48ebffb +libLAPACK.dylib (??? - ???) <498CB8D0-4DE6-3373-B565-AD791A4643BF> /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.3.sdk/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLAPACK.dylib
 0x4917000 -  0x4e00fff +libBLAS.dylib (??? - ???) <ACB0B29E-D0FB-39D2-AF0B-5D75E8CBFFC6> /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.3.sdk/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib
 0x4e2c000 -  0x4e39fff +CoreVideo (1.6.1 - compatibility 1.2.0) <896139C4-44D2-3676-94B3-E8BA3CEFDB65> /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.3.sdk/System/Library/Frameworks/CoreVideo.framework/CoreVideo
 0x4e46000 -  0x4e4cffb +libGFXShared.dylib (??? - ???) <90A5CE36-16F2-348E-80DD-3564DDBC9BAC> /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.3.sdk/System/Library/Frameworks/OpenGLES.framework/libGFXShared.dylib
 0x4e51000 -  0x4e8eff7 +libGLImage.dylib (??? - ???) <15F1AB0A-A2EF-398D-B390-B4FF5E476EE7> /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.3.sdk/System/Library/Frameworks/OpenGLES.framework/libGLImage.dylib
 0x4e96000 -  0x4e98fff +libCVMSPluginSupport.dylib (??? - ???) <986FFB51-9878-3C83-BF3D-DE1EC7D49C0F> /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.3.sdk/System/Library/Frameworks/OpenGLES.framework/libCVMSPluginSupport.dylib
 0x4e9d000 -  0x4ea5fff +libCoreVMClient.dylib (??? - ???) <43CC9869-83DD-385B-9B41-7B599C8DD8BD> /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.3.sdk/System/Library/Frameworks/OpenGLES.framework/libCoreVMClient.dylib
 0x4ead000 -  0x55caf87 +libLLVMContainer.dylib (??? - ???) <81C5DFA2-D54C-3804-8885-2F42ECE26B46> /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.3.sdk/System/Library/Frameworks/OpenGLES.framework/libLLVMContainer.dylib
 0x5859000 -  0x585efff +AssetsLibraryServices (??? - ???) <B07BBB27-CDA6-3BB5-B6BD-425CF177267D> /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.3.sdk/System/Library/PrivateFrameworks/AssetsLibraryServices.framework/AssetsLibraryServices
 0x5864000 -  0x5864ffe +libresolv.dylib (41.0.0 - compatibility 1.0.0) <77C6873D-56D9-3FC2-8DFA-DF1A20ABC92F> /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.3.sdk/usr/lib/libresolv.dylib
 0x5869000 -  0x58a3ff3 +Celestial (??? - ???) <C302570A-46DA-3692-8FAF-7513A53AB376> /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.3.sdk/System/Library/PrivateFrameworks/Celestial.framework/Celestial
 0x58da000 -  0x58e3ffb +IAP (??? - ???) <2B507B40-A5D4-3659-9DB6-81F072DBEE93> /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.3.sdk/System/Library/PrivateFrameworks/IAP.framework/IAP
 0x58ed000 -  0x59a0ff7 +MusicLibrary (18.0.0 - compatibility 1.0.0) <A68B354C-59F9-3A68-B9B2-1773F0D0684C> /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.3.sdk/System/Library/PrivateFrameworks/MusicLibrary.framework/MusicLibrary
 0x59fe000 -  0x5a09ffb +ITSync (18.0.0 - compatibility 1.0.0) <B9D67034-66E5-3FB0-ABBF-BAFA615B0A53> /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.3.sdk/System/Library/PrivateFrameworks/ITSync.framework/ITSync
 0x5a13000 -  0x5a62fff +StoreServices (??? - ???) <4CB0B6A4-A377-3C07-BD18-A3934C1FBB65> /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.3.sdk/System/Library/PrivateFrameworks/StoreServices.framework/StoreServices
 0x5a97000 -  0x5ac6ff7 +MediaControl (??? - ???) <80551024-1B93-3F1B-8773-67FB1CD2295B> /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.3.sdk/System/Library/PrivateFrameworks/MediaControl.framework/MediaControl
 0x5ad0000 -  0x5ad8ffb +libMobileGestalt.dylib (??? - ???) <F99064AA-3BDF-369B-A01E-33A323FA0F20> /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.3.sdk/usr/lib/libMobileGestalt.dylib
 0x5ae0000 -  0x5ae5fff +MediaRemote (??? - ???) <BA49BEB5-4207-374E-AB8C-A0750E348D9D> /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.3.sdk/System/Library/PrivateFrameworks/MediaRemote.framework/MediaRemote
 0x5aec000 -  0x5b39fe3 +CoreMedia (??? - ???) <BB5E6B68-062C-3578-934A-8706BC5E3A35> /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.3.sdk/System/Library/Frameworks/CoreMedia.framework/CoreMedia
 0x5b57000 -  0x5e25ffb +VideoToolbox (??? - ???) <70B5641E-3AE6-37E2-A436-F9899DC269F4> /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.3.sdk/System/Library/PrivateFrameworks/VideoToolbox.framework/VideoToolbox
 0x5e92000 -  0x6049fff +MediaToolbox (??? - ???) <273E8948-FEF3-39BD-8430-9E787577776B> /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.3.sdk/System/Library/PrivateFrameworks/MediaToolbox.framework/MediaToolbox
 0x60cb000 -  0x60cfffb +ArtworkCache (??? - ???) <056C907D-A5DB-3A7C-939A-82D2D44816D5> /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.3.sdk/System/Library/PrivateFrameworks/ArtworkCache.framework/ArtworkCache
 0x60d5000 -  0x6130fff +ManagedConfiguration (??? - ???) <7EE47F9C-C07D-3672-AFCE-5C3E93123A40> /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.3.sdk/System/Library/PrivateFrameworks/ManagedConfiguration.framework/ManagedConfiguration
 0x616e000 -  0x617fff3 +HomeSharing (??? - ???) <E9FE53A9-80D7-35C8-9D37-51CB7E01ADDC> /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.3.sdk/System/Library/PrivateFrameworks/HomeSharing.framework/HomeSharing
 0x618e000 -  0x61a1ff7 +PersistentConnection (??? - ???) <CE42C873-2938-3F46-8C24-6A98DC022DD6> /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.3.sdk/System/Library/PrivateFrameworks/PersistentConnection.framework/PersistentConnection
 0x61b2000 -  0x61c0fff +AccountSettings (??? - ???) <54E60E6E-BADE-3E6D-9282-9714E7B8F930> /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.3.sdk/System/Library/PrivateFrameworks/AccountSettings.framework/AccountSettings
 0x61ca000 -  0x61ceffb +ApplePushService (??? - ???) <727743FF-EE4B-34B8-A960-7B83746A9911> /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.3.sdk/System/Library/PrivateFrameworks/ApplePushService.framework/ApplePushService
 0x61d4000 -  0x61ecffb +DataAccessExpress (??? - ???) <BCB08113-806F-3F55-BA49-2B3023A3493F> /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.3.sdk/System/Library/PrivateFrameworks/DataAccessExpress.framework/DataAccessExpress
 0x61fe000 -  0x6206fff +GeoServices (??? - ???) <C9243B8D-94CB-36BE-97C5-80C2F77F8EAE> /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.3.sdk/System/Library/PrivateFrameworks/GeoServices.framework/GeoServices
 0x620f000 -  0x6281fe3 +GMM (14.0.0 - compatibility 1.0.0) <9D9E6E4D-33D0-3C33-B4C5-ADE1FA05FC44> /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.3.sdk/System/Library/PrivateFrameworks/GMM.framework/GMM
 0x62ce000 -  0x638eff3 +Message (20.0.0 - compatibility 1.0.0) <CCA60433-56E6-32E6-8B6A-7931462A4B41> /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.3.sdk/System/Library/PrivateFrameworks/Message.framework/Message
 0x63ed000 -  0x6429fff +DataAccess (??? - ???) <3BB52055-6405-3266-9649-D685A75EA06E> /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.3.sdk/System/Library/PrivateFrameworks/DataAccess.framework/DataAccess
 0x6450000 -  0x64e0ffb +EventKit (??? - ???) <D574EF65-0AAC-3B88-A2D5-97A6CD94A9E4> /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.3.sdk/System/Library/Frameworks/EventKit.framework/EventKit
 0x651a000 -  0x655dfef +MIME (20.0.0 - compatibility 1.0.0) <C6A38900-4E67-31B9-A023-DFE6803D570B> /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.3.sdk/System/Library/PrivateFrameworks/MIME.framework/MIME
 0x6580000 -  0x65c3fef +QuickLook (??? - ???) <892152D5-269B-3926-91B4-C33A1DF285BE> /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.3.sdk/System/Library/Frameworks/QuickLook.framework/QuickLook
 0x65ec000 -  0x65f0fff +ActorKit (??? - ???) <312ADC5A-59E9-3ED0-A74F-982C2B96D3EC> /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.3.sdk/System/Library/PrivateFrameworks/ActorKit.framework/ActorKit
 0x65f6000 -  0x65fafff +CertUI (??? - ???) <A1737234-33F8-3D1B-BBE0-A2CD58F483BE> /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.3.sdk/System/Library/PrivateFrameworks/CertUI.framework/CertUI
 0x6601000 -  0x6616ffb +WebBookmarks (??? - ???) <C6DA3E13-5909-384F-89E2-0B5D1C14896F> /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.3.sdk/System/Library/PrivateFrameworks/WebBookmarks.framework/WebBookmarks
 0x6623000 -  0x664ffff +MobileSync (810.0.0 - compatibility 1.0.0) <5586C1C5-15C9-3525-A532-192A6A62B313> /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.3.sdk/System/Library/PrivateFrameworks/MobileSync.framework/MobileSync
 0x6665000 -  0x66b3feb +iCalendar (79.0.0 - compatibility 1.0.0) <5F57FEC4-1907-35C0-8F03-3407CDCF97A7> /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.3.sdk/System/Library/PrivateFrameworks/iCalendar.framework/iCalendar
 0x66dd000 -  0x66f5ff7 +MobileDeviceLink (223.0.0 - compatibility 100.0.0) <EEE14A64-5A11-3564-9ACB-C40F7F1E1681> /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.3.sdk/System/Library/PrivateFrameworks/MobileDeviceLink.framework/MobileDeviceLink
 0x6702000 -  0x6716ffb +Notes (??? - ???) <563CB0BF-2152-3296-9E1A-66B135872D73> /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.3.sdk/System/Library/PrivateFrameworks/Notes.framework/Notes
 0x6724000 -  0x6736fff +AppleAccount (??? - ???) <C225ECF6-5397-37EA-B5E1-B991AD1F3C54> /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.3.sdk/System/Library/PrivateFrameworks/AppleAccount.framework/AppleAccount
 0x6747000 -  0x6788ffb +ContentIndex (??? - ???) <29EF2349-3D19-35DA-9AA3-178F36C7DDAB> /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.3.sdk/System/Library/PrivateFrameworks/ContentIndex.framework/ContentIndex
 0x67a2000 -  0x6900fe3 +CoreData (320.17.0 - compatibility 1.0.0) <FE8F1199-8F81-39BC-B0BD-76F990DF9565> /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.3.sdk/System/Library/Frameworks/CoreData.framework/CoreData
 0x6979000 -  0x697bfff +MailServices (??? - ???) <916716D1-E8B5-33C4-96F0-D7B5829D60ED> /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.3.sdk/System/Library/PrivateFrameworks/MailServices.framework/MailServices
 0x6b60000 -  0x6baeff7 +libCGFreetype.A.dylib (600.0.0 - compatibility 64.0.0) <BC102315-8B51-3B62-AA84-25ABAEC01B4C> /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.3.sdk/System/Library/Frameworks/CoreGraphics.framework/Resources/libCGFreetype.A.dylib
 0x6bc9000 -  0x6bf3fff +libRIP.A.dylib (600.0.0 - compatibility 64.0.0) <1DDBA519-3623-3A9F-A844-E39BF97AD056> /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.3.sdk/System/Library/Frameworks/CoreGraphics.framework/Resources/libRIP.A.dylib
0x8fe06000 - 0x8fe389c7  dyld (195.5 - ???) <134323A7-49DC-3A9D-ACFD-32FAD0FD6BA2> /usr/lib/dyld
0x901a6000 - 0x901a6fff  com.apple.Accelerate (1.7 - Accelerate 1.7) <881C1C85-2DEC-38DE-BC97-7804BC907282> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
0x909e2000 - 0x90a6ffe7  libvMisc.dylib (325.3.0 - compatibility 1.0.0) <A44ADE1B-AB2C-3585-8C9D-D85B526E66C0> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvMisc.dylib
0x90abd000 - 0x90abefff  libsystem_blocks.dylib (53.0.0 - compatibility 1.0.0) <B04592B1-0924-3422-82FF-976B339DF567> /usr/lib/system/libsystem_blocks.dylib
0x90d1c000 - 0x90d1dff7  libquarantine.dylib (36.0.0 - compatibility 1.0.0) <70782AEC-8933-3EB4-91CA-E44C0E768C90> /usr/lib/system/libquarantine.dylib
0x90e49000 - 0x90e49fff  com.apple.vecLib (3.7 - vecLib 3.7) <A01CD788-26FB-320F-8617-5A7DF0F9031E> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
0x90e5e000 - 0x90e65fff  libnotify.dylib (80.0.0 - compatibility 1.0.0) <B3B3875D-311D-31A7-A09F-D1BC56795E00> /usr/lib/system/libnotify.dylib
0x912d6000 - 0x912d9ff7  libcompiler_rt.dylib (6.0.0 - compatibility 1.0.0) <7F6C14CC-0169-3F1B-B89C-372F67F1F3B5> /usr/lib/system/libcompiler_rt.dylib
0x918b0000 - 0x918b9fff  libc++abi.dylib (14.0.0 - compatibility 1.0.0) <FEB5330E-AD5D-37A0-8AB2-0820F311A2C8> /usr/lib/libc++abi.dylib
0x918e6000 - 0x918f1fff  libkxld.dylib (??? - ???) <088640F2-429D-3368-AEDA-3C308C4EB80C> /usr/lib/system/libkxld.dylib
0x92ad1000 - 0x92b33ff3  libstdc++.6.dylib (52.0.0 - compatibility 7.0.0) <266CE9B3-526A-3C41-BA58-7AE66A3B15FD> /usr/lib/libstdc++.6.dylib
0x92f4c000 - 0x92f69fff  libresolv.9.dylib (46.0.0 - compatibility 1.0.0) <95AE43ED-6C52-3B39-89B6-54C81C62F1FF> /usr/lib/libresolv.9.dylib
0x92f74000 - 0x9303ffff  libsystem_c.dylib (763.11.0 - compatibility 1.0.0) <44AA09FD-3A8F-3DCF-AD98-BC9071CA7376> /usr/lib/system/libsystem_c.dylib
0x93207000 - 0x93208ff0  libunc.dylib (24.0.0 - compatibility 1.0.0) <BCD277D0-4271-3E96-A4A2-85669DBEE2E2> /usr/lib/system/libunc.dylib
0x9360d000 - 0x93612ff7  libmacho.dylib (800.0.0 - compatibility 1.0.0) <56A34E97-518E-307E-8218-C5D43A33EE34> /usr/lib/system/libmacho.dylib
0x948c1000 - 0x948dfff7  libsystem_kernel.dylib (1699.22.73 - compatibility 1.0.0) <D32C2E9C-8184-3FAF-8694-99FC619FC71B> /usr/lib/system/libsystem_kernel.dylib
0x948e0000 - 0x949d0ff1  libiconv.2.dylib (7.0.0 - compatibility 7.0.0) <9E5F86A3-8405-3774-9E0C-3A074273C96D> /usr/lib/libiconv.2.dylib
0x9547f000 - 0x9559ffec  com.apple.vImage (5.0 - 5.0) <173F6343-07EE-39F7-A159-DD3837E473DE> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/vImage
0x95625000 - 0x95628ff7  libmathCommon.A.dylib (2026.0.0 - compatibility 1.0.0) <69357047-7BE0-3360-A36D-000F55E39336> /usr/lib/system/libmathCommon.A.dylib
0x95c59000 - 0x95c59ffe  libkeymgr.dylib (23.0.0 - compatibility 1.0.0) <7F0E8EE2-9E8F-366F-9988-E2F119DB9A82> /usr/lib/system/libkeymgr.dylib
0x96019000 - 0x9601aff5  libremovefile.dylib (21.0.0 - compatibility 1.0.0) <9A1E12B7-F822-3544-8E1D-A6DC81E1F2E6> /usr/lib/system/libremovefile.dylib
0x96576000 - 0x9657eff3  libunwind.dylib (30.0.0 - compatibility 1.0.0) <E8DA8CEC-12D6-3C8D-B2E2-5D567C8F3CB5> /usr/lib/system/libunwind.dylib
0x96778000 - 0x96779ff7  libsystem_sandbox.dylib (??? - ???) <BC0A04E9-4F28-3BC8-AA7B-63C3451E9212> /usr/lib/system/libsystem_sandbox.dylib
0x97a7b000 - 0x97adffff  com.apple.framework.IOKit (2.0 - ???) <B5888D02-8C36-3404-A37E-7457D950D629> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
0x98102000 - 0x98118ffe  libxpc.dylib (77.16.0 - compatibility 1.0.0) <2EAF3E13-19FA-3EF2-88D6-64ACBC3A6ADB> /usr/lib/system/libxpc.dylib
0x98761000 - 0x98765ff3  libsystem_network.dylib (??? - ???) <E1455F3E-549B-3D50-A38B-17B394F3C7F6> /usr/lib/system/libsystem_network.dylib
0x98c1b000 - 0x98c1fffa  libcache.dylib (47.0.0 - compatibility 1.0.0) <98A82BC5-0DD9-3212-9CAE-35A77278EEB6> /usr/lib/system/libcache.dylib
0x98c9d000 - 0x98ccbfe7  libSystem.B.dylib (159.0.0 - compatibility 1.0.0) <FA9B75F7-B989-3DD3-97FD-373EB95C5BA8> /usr/lib/libSystem.B.dylib
0x994f5000 - 0x99525ff7  libsystem_info.dylib (??? - ???) <C385F5A9-458A-3B49-9CC7-EA81DC5F9141> /usr/lib/system/libsystem_info.dylib
0x999c3000 - 0x999c3fff  libdnsinfo.dylib (395.6.0 - compatibility 1.0.0) <959E5139-EB23-3529-8881-2BCB5724D1A9> /usr/lib/system/libdnsinfo.dylib
0x99d85000 - 0x99dc8ffd  libcommonCrypto.dylib (55010.0.0 - compatibility 1.0.0) <4BA1F5F1-F0A2-3FEB-BB62-F514DCBB3725> /usr/lib/system/libcommonCrypto.dylib
0x9a154000 - 0x9a1b9ff7  libvDSP.dylib (325.3.0 - compatibility 1.0.0) <1C4B66EB-3186-31BE-B93F-878E49334C49> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvDSP.dylib
0x9b310000 - 0x9b318ff3  liblaunch.dylib (392.18.0 - compatibility 1.0.0) <CD470A1E-0147-3CB1-B44D-0B61F9061826> /usr/lib/system/liblaunch.dylib
0x9b8a4000 - 0x9b8abff5  libsystem_dnssd.dylib (??? - ???) <B3217FA8-A7D6-3C90-ABFC-2E54AEF33547> /usr/lib/system/libsystem_dnssd.dylib
0x9b8cd000 - 0x9b8cfff7  libdyld.dylib (195.5.0 - compatibility 1.0.0) <637660EA-8D12-3B79-B644-041FEADC9C33> /usr/lib/system/libdyld.dylib
0x9c650000 - 0x9c658ff5  libcopyfile.dylib (85.1.0 - compatibility 1.0.0) <A1BFC320-616A-30AA-A41E-29D7904FC4C7> /usr/lib/system/libcopyfile.dylib
0x9c68e000 - 0x9c69cfff  libdispatch.dylib (187.5.0 - compatibility 1.0.0) <1883C8E2-D180-3EA0-8BEF-325F2FEDACD1> /usr/lib/system/libdispatch.dylib

External Modification Summary:
  Calls made by other processes targeting this process:
    task_for_pid: 0
    thread_create: 0
    thread_set_state: 0
  Calls made by this process:
    task_for_pid: 0
    thread_create: 0
    thread_set_state: 0
  Calls made by all processes on this machine:
    task_for_pid: 3791
    thread_create: 1
    thread_set_state: 0

VM Region Summary:
ReadOnly portion of Libraries: Total=147.7M resident=58.6M(40%) swapped_out_or_unallocated=89.1M(60%)
Writable regions: Total=64.8M written=4848K(7%) resident=9.9M(15%) swapped_out=0K(0%) unallocated=54.9M(85%)
 
REGION TYPE                      VIRTUAL
===========                      =======
CG image                             88K
CoreAnimation                         4K
Image IO                           2400K
JS VM register file                4160K
JS garbage collector                320K
MALLOC                             43.1M
MALLOC guard page                    48K
SQLite page cache                    96K
Stack                              66.3M
VM_ALLOCATE                         112K
__DATA                             6056K
__IMPORT                              4K
__LINKEDIT                         63.1M
__PAGEZERO                            4K
__TEXT                             84.6M
__UNICODE                           544K
mapped file                       258.6M
shared memory                        12K
shared pmap                        12.8M
===========                      =======
TOTAL                             542.0M

Model: MacBookPro8,1, BootROM MBP81.0047.B0E, 2 processors, Intel Core i5, 2.3 GHz, 4 GB, SMC 1.68f96
Graphics: Intel HD Graphics 3000, Intel HD Graphics 3000, Built-In, 384 MB
Memory Module: BANK 0/DIMM0, 2 GB, DDR3, 1333 MHz, 0x80CE, 0x4D34373142353737334448302D4348392020
Memory Module: BANK 1/DIMM0, 2 GB, DDR3, 1333 MHz, 0x80CE, 0x4D34373142353737334448302D4348392020
AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0xD6), Broadcom BCM43xx 1.0 (5.100.98.75.10)
Bluetooth: Version 2.5.0f17, 2 service, 12 devices, 1 incoming serial ports
Network Service: Wi-Fi, AirPort, en1
Serial ATA Device: Hitachi HTS545032B9A302, 320,07 GB
Serial ATA Device: MATSHITADVD-R   UJ-8A8
USB Device: FaceTime HD Camera (Built-in), apple_vendor_id, 0x8509, 0xfa200000 / 3
USB Device: hub_device, 0x0424  (SMSC), 0x2513, 0xfa100000 / 2
USB Device: BRCM2070 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0xfa110000 / 5
USB Device: Bluetooth USB Host Controller, apple_vendor_id, 0x821a, 0xfa113000 / 8
USB Device: Apple Internal Keyboard / Trackpad, apple_vendor_id, 0x0246, 0xfa120000 / 4
USB Device: hub_device, 0x0424  (SMSC), 0x2513, 0xfd100000 / 2
USB Device: IR Receiver, apple_vendor_id, 0x8242, 0xfd110000 / 3

Discussions

Q&A: [tableview nsinternalinconsistencyexception occasionally](http://developer.appcelerator.com/question/126733/tableview-nsinternalinconsistencyexception-occasionally)

Comments

  1. Paul Dowsett 2011-12-29

    Robert Thanks for raising this ticket. Note that test cases and logs need to be included in the ticket rather than provided via external sources. Would you please complete the environment information, as per my notes? Once you have done this, I will escalate this ticket. Cheers
  2. Paul Dowsett 2012-02-17

    Closing due to inactivity. If this issue still exists, please raise a new ticket, including all the information in the [JIRA Ticket Checklist](https://wiki.appcelerator.org/display/guides/How+to+Submit+a+Bug+Report#HowtoSubmitaBugReport-JIRATicketChecklist) to ensure that we can escalate it quickly. Read [How to Submit a Bug Report](https://wiki.appcelerator.org/display/guides/How+to+Submit+a+Bug+Report) if you have not read it before, and always start a ticket using the [JIRA Ticket Template](https://wiki.appcelerator.org/display/guides/JIRA+Ticket+Template). Thanks in advance

JSON Source