Search results for

“LLDB crash”

30,527 results found

Post

Replies

Boosts

Views

Activity

Crash objc_retain_x0
Attaching several crash traces: 2024-02-29_22-48-33.6864_-0600-3f948243e21b4c68d77a38d9cf1cecfdfe2c1565.crash 2024-03-04_15-00-02.9335_-0600-75000cd5acd63ba1434f2ffb3648b97259dddb88.crash 2024-03-05_08-55-47.2097_-0500-f682b25663107ad46f091d65f402f2be31f3f3c6.crash 2024-03-11_08-09-00.4057_-0400-e37d1a635d51afbb67ac38b42dd79c1718a408e8.crash 2024-03-15_16-20-22.6446_-0600-d4ebccf455e8305038ca564a39a5661a1dce6231.crash The final code: - (NSObject*)objectAtIndex:(NSUInteger)index { if (index < self.count) { return [self.embeddedArray objectAtIndex:index]; } else { [PNDErrorReporting reportError:PNDErrorReasonTypeSafeCollectionCrashPrevented message:@Error msg]; return nil; } } We subclass NSMutableArray to prevent potential crashes. but we encounter a new crash in our sdk for one of the clients. Also we noticed the stack trace skipped one of the frames (stack calls) in the crash report, in which cases the stack trace wont be ide
8
0
2.1k
Jun ’24
Reply to can't convert string into int to display on label
i try to unwrapcuentita.cubitoCHocolate = Int(chocolate.text!) ?? 0but it crash the appand this error appears in the console2018-05-09 14:48:22.123528-0500 venta[4355:2000820] -[venta.items continuar:]: unrecognized selector sent to instance 0x155d428f02018-05-09 14:48:22.127562-0500 venta[4355:2000820] *** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[venta.items continuar:]: unrecognized selector sent to instance 0x155d428f0'*** First throw call stack:(0x184296d8c 0x1834505ec 0x1842a4098 0x18e34ade4 0x18429c5c8 0x18418241c 0x18dfc66c8 0x18e0e78a4 0x18dfcc77c 0x18e1021dc 0x18e5a7dd8 0x18e5a4b50 0x18423e910 0x18423c238 0x18423c884 0x18415cda8 0x18613f020 0x18e13d78c 0x1045fd02c 0x183bedfc0)libc++abi.dylib: terminating with uncaught exception of type NSException(lldb)
Topic: Programming Languages SubTopic: Swift Tags:
May ’18
Crashing
My phone just keeps crashing, screen turns off and the iphone just reboots himself. It happend now 6-7 times in 1,5 hours. I have a Iphone 15 Pro (IOS 18.0) what can i do?
0
0
330
Jul ’24
Reply to Xcode 12 crashes as soon as I open my workspace
I am on Xcode 12.4 and also having this problem with my Flutter project. Earlier today it was opening fine, then I quit Xcode, built a new ios version of the app through VS terminal, then tried to reopen my project in Xcode but nothing happens when I click on the .xcworkspace file, it doesn't open anything. It does open other projects successfully, but still not the one above. After restarting Mac and trying again, it still does not open, but gave me the message: Xcode quit unexpectedly Process: Xcode [2379] Path: /Applications/Xcode.app/Contents/MacOS/Xcode Identifier: com.apple.dt.Xcode Version: 12.4 (17801) Build Info: IDEFrameworks-17801000000000000~7 (12D4e) App Item ID: 497799835 App External ID: 839994694 Code Type: X86-64 (Native) Parent Process: ??? [1] Responsible: Xcode [2379] User ID: 501 Date/Time: 2021-04-02 18:33:36.412 +0100 OS Version: Mac OS X 10.15.7 (19H2) Report Version: 12 Bridge OS Version: 4.6 (17P6610) Anonymous UUID: 539C0A09-D3B8-3B12-BC86-25902B07D97B Tim
Apr ’21
Reply to EXC_BAD_INSTRUCTION
Ed and I discussed the issue behinds the scenes, and so I am chiming in to comment the following error from the Core Data perspective. Regarding the following error: error: :8:15: error: cannot convert value of type 'NSFetchRequest' to expected argument type 'NSFetchRequest' context.fetch(request) ^ :8:15: note: arguments to generic parameter 'ResultType' ('ResultType' and 'any NSFetchRequestResult') are expected to be equal This seems to indicate that you were passing an NSFetchRequest object tied to one entity as an argument to a closure (configurationBlock?) and the closure expects (or infers) a fetch request tied to the other entity. Since the potential type mismatch happens in runtime, it's hard to reason the why by simply reading the piece of code. Do you have a minimal sample project that reproduce the issue? You mentioned that the error does not occur on every call, but since you've figured out the line triggering the crash and use lldb to trigger the crash report, I'd think
Mar ’25
Crashes discrepancy
Hi,In iTunes Connect, if I navigate to the TestFlight tab, and look at the list of builds for my app, the latest build shows the number 4 in the Crashes column.However, if I select that build number in the Crashes tab of the Organizer window in Xcode, it says No Crashes.Also, if I click the build number in TestFlight to see the details of the build, there are no numbers (not even zeros) in the Crashes column.How should I interpret this information? Were there actually 4 crashes? If so, why didn't I get any crash reports?Thanks,Frank
0
0
467
May ’17
Reply to TabView reload all content constantly
Okay, looks like this is entirely down to SwiftUI being weird. It appears to be gaming the UITabBar system. Each time you tap to select a tab, SwiftUI is changing the view controller list for the tab bar. For n tabs, it contains n-1 plain UIViewControllers with empty views, and 1 HostingController<_ViewList_View>. Tapping on a tab will update the content of hosting controller to contain the content of the SwiftUI tab, and it will reassign the UITabBarController's viewControllers property—it moves the HostingController to the index of the tapped tab, and puts a new empty UIViewController at its old position.Here's the output of that property as I walk through four SwiftUI tabs:(lldb) po [$21 viewControllers] <__NSArrayM 0x6000015091d0>( <_TtGC7SwiftUI19UIHostingControllerVS_14_ViewList_View_: 0x7fddabe0c600>, <UIViewController: 0x7fdd9bc2eeb0>, <UIViewController: 0x7fddabf2bd80>, <UIViewController: 0x7fddabd11b40> ) (lldb) po [$21 viewControllers] <__NSA
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Oct ’19
App crash without "real" crash log
Hi all, Some of my end users are facing a crash at application start on iOS 15.0. Usually, I expect them to send crash logs (.crash format / .ips), so that I can symbolicate those files and check the root cause of the crash. This time, what they sent me is different to what I'm used to. It looks like a crash log but I don't find the real root trace linked to my app. I can see that the method abort() is called from CoreFoundation: exception : {codes:0x0000000000000000, 0x0000000000000000,rawCodes:[0,0],type:EXC_CRASH,signal:SIGABRT}, asi : {CoreFoundation:[],libsystem_c.dylib:[abort() called],libc++abi.dylib:[]}, And below it, a lastExceptionBacktrace: lastExceptionBacktrace : [{imageOffset:626780,imageIndex:5},{imageOffset:89940,imageIndex:4},{imageOffset:394752,imageIndex:9},{imageOffset:491384....} MyBeautifulApp-2021-10-15-144552.txt Not sure if this is a crash caused by my app?
1
0
738
Oct ’21
crash reports
Hi,My app is in Test Flight release at this time.In iTunes Connect, under Testflight Builds, several of the releases show a nonzero number of crash reports.However, I'm unable to access any of these crash reports in Xcode. When I select one of the builds that should have crash reports, the Organizer window says No Crashes.Why is this happening? Is there a way to access the crash reports directly through iTunes Connect?Frank
0
0
422
Jul ’16
Crash objc_retain_x0
Attaching several crash traces: 2024-02-29_22-48-33.6864_-0600-3f948243e21b4c68d77a38d9cf1cecfdfe2c1565.crash 2024-03-04_15-00-02.9335_-0600-75000cd5acd63ba1434f2ffb3648b97259dddb88.crash 2024-03-05_08-55-47.2097_-0500-f682b25663107ad46f091d65f402f2be31f3f3c6.crash 2024-03-11_08-09-00.4057_-0400-e37d1a635d51afbb67ac38b42dd79c1718a408e8.crash 2024-03-15_16-20-22.6446_-0600-d4ebccf455e8305038ca564a39a5661a1dce6231.crash The final code: - (NSObject*)objectAtIndex:(NSUInteger)index { if (index < self.count) { return [self.embeddedArray objectAtIndex:index]; } else { [PNDErrorReporting reportError:PNDErrorReasonTypeSafeCollectionCrashPrevented message:@Error msg]; return nil; } } We subclass NSMutableArray to prevent potential crashes. but we encounter a new crash in our sdk for one of the clients. Also we noticed the stack trace skipped one of the frames (stack calls) in the crash report, in which cases the stack trace wont be ide
Replies
8
Boosts
0
Views
2.1k
Activity
Jun ’24
Reply to can't convert string into int to display on label
i try to unwrapcuentita.cubitoCHocolate = Int(chocolate.text!) ?? 0but it crash the appand this error appears in the console2018-05-09 14:48:22.123528-0500 venta[4355:2000820] -[venta.items continuar:]: unrecognized selector sent to instance 0x155d428f02018-05-09 14:48:22.127562-0500 venta[4355:2000820] *** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[venta.items continuar:]: unrecognized selector sent to instance 0x155d428f0'*** First throw call stack:(0x184296d8c 0x1834505ec 0x1842a4098 0x18e34ade4 0x18429c5c8 0x18418241c 0x18dfc66c8 0x18e0e78a4 0x18dfcc77c 0x18e1021dc 0x18e5a7dd8 0x18e5a4b50 0x18423e910 0x18423c238 0x18423c884 0x18415cda8 0x18613f020 0x18e13d78c 0x1045fd02c 0x183bedfc0)libc++abi.dylib: terminating with uncaught exception of type NSException(lldb)
Topic: Programming Languages SubTopic: Swift Tags:
Replies
Boosts
Views
Activity
May ’18
Crashing
My phone just keeps crashing, screen turns off and the iphone just reboots himself. It happend now 6-7 times in 1,5 hours. I have a Iphone 15 Pro (IOS 18.0) what can i do?
Replies
0
Boosts
0
Views
330
Activity
Jul ’24
Reason for crash in TestFlight crash reports
In TestFlight crash reports, all I see is the stack trace. Is there any other information hidden in there, such as the specific signal (etc) that caused the app to terminate? Thanks.
Replies
0
Boosts
0
Views
491
Activity
Oct ’23
Reply to Xcode 12 crashes as soon as I open my workspace
I am on Xcode 12.4 and also having this problem with my Flutter project. Earlier today it was opening fine, then I quit Xcode, built a new ios version of the app through VS terminal, then tried to reopen my project in Xcode but nothing happens when I click on the .xcworkspace file, it doesn't open anything. It does open other projects successfully, but still not the one above. After restarting Mac and trying again, it still does not open, but gave me the message: Xcode quit unexpectedly Process: Xcode [2379] Path: /Applications/Xcode.app/Contents/MacOS/Xcode Identifier: com.apple.dt.Xcode Version: 12.4 (17801) Build Info: IDEFrameworks-17801000000000000~7 (12D4e) App Item ID: 497799835 App External ID: 839994694 Code Type: X86-64 (Native) Parent Process: ??? [1] Responsible: Xcode [2379] User ID: 501 Date/Time: 2021-04-02 18:33:36.412 +0100 OS Version: Mac OS X 10.15.7 (19H2) Report Version: 12 Bridge OS Version: 4.6 (17P6610) Anonymous UUID: 539C0A09-D3B8-3B12-BC86-25902B07D97B Tim
Replies
Boosts
Views
Activity
Apr ’21
Crash on com.apple.CFNetwork.CustomProtocols
Recently received quite a number of crashes, and notice from the crash log it seems related to CFNetwork. In the crashed thread's stack trace, I do not see any of my application code involved. GA.crash
Replies
1
Boosts
0
Views
984
Activity
Jun ’22
Xcode12.2 is Crash
1:click perfrence->behaviors or Account = crash 2:click Project->scheme->manager scheme = crash 3:click Device and Simulator -> unpair device = crash
Replies
5
Boosts
0
Views
1.1k
Activity
Nov ’20
Reply to EXC_BAD_INSTRUCTION
Ed and I discussed the issue behinds the scenes, and so I am chiming in to comment the following error from the Core Data perspective. Regarding the following error: error: :8:15: error: cannot convert value of type 'NSFetchRequest' to expected argument type 'NSFetchRequest' context.fetch(request) ^ :8:15: note: arguments to generic parameter 'ResultType' ('ResultType' and 'any NSFetchRequestResult') are expected to be equal This seems to indicate that you were passing an NSFetchRequest object tied to one entity as an argument to a closure (configurationBlock?) and the closure expects (or infers) a fetch request tied to the other entity. Since the potential type mismatch happens in runtime, it's hard to reason the why by simply reading the piece of code. Do you have a minimal sample project that reproduce the issue? You mentioned that the error does not occur on every call, but since you've figured out the line triggering the crash and use lldb to trigger the crash report, I'd think
Replies
Boosts
Views
Activity
Mar ’25
Crashes discrepancy
Hi,In iTunes Connect, if I navigate to the TestFlight tab, and look at the list of builds for my app, the latest build shows the number 4 in the Crashes column.However, if I select that build number in the Crashes tab of the Organizer window in Xcode, it says No Crashes.Also, if I click the build number in TestFlight to see the details of the build, there are no numbers (not even zeros) in the Crashes column.How should I interpret this information? Were there actually 4 crashes? If so, why didn't I get any crash reports?Thanks,Frank
Replies
0
Boosts
0
Views
467
Activity
May ’17
Reply to TabView reload all content constantly
Okay, looks like this is entirely down to SwiftUI being weird. It appears to be gaming the UITabBar system. Each time you tap to select a tab, SwiftUI is changing the view controller list for the tab bar. For n tabs, it contains n-1 plain UIViewControllers with empty views, and 1 HostingController<_ViewList_View>. Tapping on a tab will update the content of hosting controller to contain the content of the SwiftUI tab, and it will reassign the UITabBarController's viewControllers property—it moves the HostingController to the index of the tapped tab, and puts a new empty UIViewController at its old position.Here's the output of that property as I walk through four SwiftUI tabs:(lldb) po [$21 viewControllers] <__NSArrayM 0x6000015091d0>( <_TtGC7SwiftUI19UIHostingControllerVS_14_ViewList_View_: 0x7fddabe0c600>, <UIViewController: 0x7fdd9bc2eeb0>, <UIViewController: 0x7fddabf2bd80>, <UIViewController: 0x7fddabd11b40> ) (lldb) po [$21 viewControllers] <__NSA
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Replies
Boosts
Views
Activity
Oct ’19
App crash without "real" crash log
Hi all, Some of my end users are facing a crash at application start on iOS 15.0. Usually, I expect them to send crash logs (.crash format / .ips), so that I can symbolicate those files and check the root cause of the crash. This time, what they sent me is different to what I'm used to. It looks like a crash log but I don't find the real root trace linked to my app. I can see that the method abort() is called from CoreFoundation: exception : {codes:0x0000000000000000, 0x0000000000000000,rawCodes:[0,0],type:EXC_CRASH,signal:SIGABRT}, asi : {CoreFoundation:[],libsystem_c.dylib:[abort() called],libc++abi.dylib:[]}, And below it, a lastExceptionBacktrace: lastExceptionBacktrace : [{imageOffset:626780,imageIndex:5},{imageOffset:89940,imageIndex:4},{imageOffset:394752,imageIndex:9},{imageOffset:491384....} MyBeautifulApp-2021-10-15-144552.txt Not sure if this is a crash caused by my app?
Replies
1
Boosts
0
Views
738
Activity
Oct ’21
Crash report
Hi guys, My app gets many this kind of crash on iOS 15 recently. the exception type is EXC_CRASH (SIGKILL) but doesn't have the Termination Reason. I attached the crash log below. Does anyone have any ideas? Cheers. crash log
Replies
1
Boosts
0
Views
967
Activity
Nov ’21
Crash from IOSSurfaceCreate
I am getting this crash log, where crash is happening from iosCreateNamedProperties. I have attached image of crash log. What could be the reason and how to solve it.
Replies
1
Boosts
0
Views
1.1k
Activity
Apr ’23
crash reports
Hi,My app is in Test Flight release at this time.In iTunes Connect, under Testflight Builds, several of the releases show a nonzero number of crash reports.However, I'm unable to access any of these crash reports in Xcode. When I select one of the builds that should have crash reports, the Organizer window says No Crashes.Why is this happening? Is there a way to access the crash reports directly through iTunes Connect?Frank
Replies
0
Boosts
0
Views
422
Activity
Jul ’16
Xode LLDB, if the current input source is Chinese, typing 'po' will hang forever
Hi there, I already filed radar FB9958917 two weeks ago and no response. this is super annoying when you are debuging a giant app and suddenly you switch the input source, and all debug work is gone and I have to kill xcode to start over again. unacceptable, only happens after you upgrade to 13.3
Replies
1
Boosts
0
Views
538
Activity
Apr ’22