Skip to content

Instantly share code, notes, and snippets.

@noeticpenguin
Last active December 25, 2015 05:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save noeticpenguin/6923459 to your computer and use it in GitHub Desktop.
Save noeticpenguin/6923459 to your computer and use it in GitHub Desktop.
(lldb) bt
* thread #1: tid = 0x4e10c4, 0x0089ae10 Dreamforce Demo App`rb_exc_raise, queue = 'com.apple.main-thread, stop reason = breakpoint 1.1
frame #0: 0x0089ae10 Dreamforce Demo App`rb_exc_raise
frame #1: 0x00969065 Dreamforce Demo App`rb_vm_method_missing + 469
frame #2: 0x0093da9f Dreamforce Demo App`rb_method_missing + 31
frame #3: 0x00947431 Dreamforce Demo App`rb_vm_dispatch + 4113
frame #4: 0x009461ed Dreamforce Demo App`rb_vm_trigger_method_missing + 717
frame #5: 0x00946bee Dreamforce Demo App`rb_vm_dispatch + 1998
frame #6: 0x0085d4cc Dreamforce Demo App`vm_dispatch + 1100
frame #7: 0x00862dda Dreamforce Demo App`rb_scope__initialLoginSuccessBlock__(self=0x0edb9830) + 394 at app_delegate.rb:30
frame #8: 0x00960a8f Dreamforce Demo App`dispatch_rimp_caller(objc_object* (*)(objc_object*, objc_selector*, ...), unsigned long, objc_selector, int, unsigned long const*) + 46303
frame #9: 0x009479e3 Dreamforce Demo App`rb_vm_dispatch + 5571
frame #10: 0x0085d4cc Dreamforce Demo App`vm_dispatch + 1100
frame #11: 0x00864494 Dreamforce Demo App`rb_scope__application:didFinishLaunchingWithOptions:__(self=0x0edb9830, application=0x0ecf0ba0, launchOptions=0x00000004) + 3556 at app_delegate.rb:58
frame #12: 0x0086465f Dreamforce Demo App`__unnamed_34 + 95
frame #13: 0x02055f65 UIKit`-[UIApplication _handleDelegateCallbacksWithOptions:isSuspended:restoreState:] + 309
frame #14: 0x020567a5 UIKit`-[UIApplication _callInitializationDelegatesForURL:payload:suspended:] + 1536
frame #15: 0x0205afb8 UIKit`-[UIApplication _runWithURL:payload:launchOrientation:statusBarStyle:statusBarHidden:] + 824
frame #16: 0x0206f42c UIKit`-[UIApplication handleEvent:withNewEvent:] + 3447
frame #17: 0x0206f999 UIKit`-[UIApplication sendEvent:] + 85
frame #18: 0x0205cc35 UIKit`_UIApplicationHandleEvent + 736
frame #19: 0x05f9d2eb GraphicsServices`_PurpleEventCallback + 776
frame #20: 0x05f9cdf6 GraphicsServices`PurpleEventCallback + 46
frame #21: 0x03a49dd5 CoreFoundation`__CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE1_PERFORM_FUNCTION__ + 53
frame #22: 0x03a49b0b CoreFoundation`__CFRunLoopDoSource1 + 523
frame #23: 0x03a747ec CoreFoundation`__CFRunLoopRun + 2156
frame #24: 0x03a73b33 CoreFoundation`CFRunLoopRunSpecific + 467
frame #25: 0x03a7394b CoreFoundation`CFRunLoopRunInMode + 123
frame #26: 0x0205a6ed UIKit`-[UIApplication _run] + 840
frame #27: 0x0205c94b UIKit`UIApplicationMain + 1225
frame #28: 0x000a9cbc Dreamforce Demo App`main(argc=1, argv=0xbfffe810) + 156 at main.mm:15
frame #29: 0x05bfd725 libdyld.dylib`start + 1
(lldb)
class InitialViewController < UIViewController
def initWithNibName(nibNameOrNil, bundle:nibBundleOrNil)
super.initWithNibName(nibNameOrNil, bundle:nibBundleOrNil)
p "Inside InitialViewController"
if self
# Custom init code goes here
end
self
end
def viewDidLoad()
super
# custom setup goes here
end
def didReceiveMemoryWarning()
super
# Dispose of un-needed resource
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment