Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8431435
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 10, 20262026-06-10T05:51:18+00:00 2026-06-10T05:51:18+00:00

My app (named MyLittleApplication) crashes randomly when I click on a button that pops

  • 0

My app (named MyLittleApplication) crashes randomly when I click on a button that pops view controller.
I could use some help (to find out where should I start looking) with crash log:

Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
Exception Codes: KERN_INVALID_ADDRESS at 0x600332e0
Crashed Thread:  0

Thread 0 name:  Dispatch queue: com.apple.main-thread
Thread 0 Crashed:
0   libobjc.A.dylib                 0x351faf78 objc_msgSend + 16
1   Foundation                      0x37d0a74c NSKVOPendingNotificationCreate + 216
2   Foundation                      0x37d0a652 NSKeyValuePushPendingNotificationPerThread + 62
3   Foundation                      0x37cfc744 NSKeyValueWillChange + 408
4   Foundation                      0x37cd3848-[NSObject(NSKeyValueObserverNotification) willChangeValueForKey:] + 176
5   Foundation                      0x37d55a14 _NSSetPointValueAndNotify + 76
6   UIKit                           0x311f825a -[UIScrollView(Static) _adjustContentOffsetIfNecessary] + 1890
7   UIKit                           0x31215a54 -[UIScrollView setFrame:] + 548
8   UIKit                           0x31215802 -[UITableView setFrame:] + 182
9   POViO                           0x000fcac8 0xf8000 + 19144
10  UIKit                           0x31211b8e -[UIViewController _setViewAppearState:isAnimating:] + 138
11  UIKit                           0x3126b8a8 -[UIViewController beginAppearanceTransition:animated:] + 184
12  UIKit                           0x3121490c -[UINavigationController _startTransition:fromViewController:toViewController:] + 832
13  UIKit                           0x312144fc -[UINavigationController _startDeferredTransitionIfNeeded] + 244
14  UIKit                           0x3125e8e4 _popViewControllerNormal + 184
15  UIKit                           0x3125e712 -[UINavigationController _popViewControllerWithTransition:allowPoppingLast:] + 386
16  UIKit                           0x31242bba -[UINavigationController popToViewController:transition:] + 626
17  POViO                           0x001074e6 0xf8000 + 62694
18  CoreFoundation                  0x374553f6 -[NSObject performSelector:withObject:withObject:] + 46
19  UIKit                           0x311eae00 -[UIApplication sendAction:to:from:forEvent:] + 56
20  UIKit                           0x311eadbc -[UIApplication sendAction:toTarget:fromSender:forEvent:] + 24
21  UIKit                           0x311ead9a -[UIControl sendAction:to:forEvent:] + 38
22  UIKit                           0x311eab0a -[UIControl(Internal) _sendActionsForEvents:withEvent:] + 486
23  UIKit                           0x311eb442 -[UIControl touchesEnded:withEvent:] + 470
24  UIKit                           0x311e9924 -[UIWindow _sendTouchesForEvent:] + 312
25  UIKit                           0x311e9312 -[UIWindow sendEvent:] + 374
26  UIKit                           0x311cf68e -[UIApplication sendEvent:] + 350
27  UIKit                           0x311cef34 _UIApplicationHandleEvent + 5820
28  GraphicsServices                0x33c11224 PurpleEventCallback + 876
29  CoreFoundation                  0x374cf51c __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE1_PERFORM_FUNCTION__ + 32
30  CoreFoundation                  0x374cf4be __CFRunLoopDoSource1 + 134
31  CoreFoundation                  0x374ce30c __CFRunLoopRun + 1364
32  CoreFoundation                  0x3745149e CFRunLoopRunSpecific + 294
33  CoreFoundation                  0x37451366 CFRunLoopRunInMode + 98
34  GraphicsServices                0x33c10432 GSEventRunModal + 130
35  UIKit                           0x311fdcce UIApplicationMain + 1074
36  MyLittleApplication                 0x000f90ae 0xf8000 + 4270
37  MyLittleApplication                 0x000f9048 0xf8000 + 4168

I suspect that it has something to do with notificationCenter and UIDeviceOrientationDidChangeNotifications I use. Is this true or am I looking in the wrong direction?
I am calling

[notificationCenter removeObserver:self name:UIDeviceOrientationDidChangeNotification object:nil] 

in viewDidUnload, this shuld be enough?

Can you please tell me what bug should i start looking for?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-10T05:51:19+00:00Added an answer on June 10, 2026 at 5:51 am

    This is a stacktrace you see the stack of methods called when the crash happened.
    You start at the bottom and work yourself up to the top and search for a method call from your app (the stacktrace includes calls from the frameworks too (e.g. -[UIScrollView(Static) _adjustContentOffsetIfNecessary])).
    The topmost method call from your app is likely the cause of your error and you can see what the system tried afterwards.

    In your case it seems that you call popToViewController and the iOS frameworks try to animate the transition from one UIViewController to the next. There seems to be a problem for the table view to set its frame and scroll to the contentOffset.

    This is likely to be caused by a memory error. You get this hint by examining Exception Type: EXC_BAD_ACCESS (SIGSEGV)
    EXC_BAD_ACCESS is likely a hint that you try to acces a something which is no more in the memory -> already released.

    In general I would recomment to activate exveption breakpoints in Xcode:
    Have you set the exception breakpoint?

    • got to breakpoint editor pane
    • click on the x in the bottom left corner
    • choose add exception breakpoint

    Now you should see a stacktrace if an exception occurs. And Xcode should be at the line where the crash happens.

    The second thing you should get familiar with is the zombie mode in Instruments.
    You can find a good introduction to the zombi mode in this video.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I use custom button in my app named addButton and I want to border
Based on this post http://www.adam-bien.com/roller/abien/entry/ejb_3_1_killed_the I use in my app @Named @Stateless bean for
I have a grails app named qotd which has a controller named quote .
I have a controller in a Rails 3 app named my_store. I would like
I have a folder in my app named Files. I would like to display
I created a silverlight app (without website) named TestApp , with one TextBox: <UserControl
I added custom named styles to the app.xaml. I created an external resource dictionary
I know the user of my app has a local file named c:\sourcefile.cs, I
I have a variable MediaElement variable named TestAudio in my Silverlight app. When I
I have a variable named as [ThreadStatic] , will it shared across 2 app

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.