Search results for

LLDB crash

29,555 results found

Post

Replies

Boosts

Views

Activity

Reply to iCloud contacts won't sync
I had the same problem with OS X server contacts through carddav - I had to delete and re-add accounts to have it working. And as soon as I try to enter account in Contacts.app, it will lead the app to crash. I had to set everything up through System Preferences -> Internet Accounts and to restart to have it working, again
Topic: App & System Services SubTopic: Core OS Tags:
Jun ’15
Reply to Understanding Optionals
Generally, declaring something as a normal optional (with Type?) indicates that an instance or value can be nil under normal circumstances, or might become nil in the future.When something is declared as an implicitly unwrapped optional (with Type!), it's still an optional, but it usually represents an instance or value that might be nil when first created but should always have a valid value later on, or a return value that is nil under rare circumstances. It doesn't need to be unwrapped each time it is used, but will crash your code at runtime if it is nil, so it's a good idea to test it when first created/returned.
Topic: Programming Languages SubTopic: Swift Tags:
Jun ’15
iOS 9 Safari full site request
Using the iOS 9 beta I've noticed the 'request full site' feature is missing from safari, does anyone know if it's just because of the beta or if it's been removed? There's still a lot of documentation I've not looked at yet. Aside from that I'm having a lot more trouble with it he 9.0 beta than I did from 8.0, - battery life - networking ( cell & wifi ) - crashing - slow It's very hard to test apps on such an unfinished operating system, can't tell if the app or the OS is the problem half the time.
1
0
133
Jun ’15
Using .sks files with custom classes as reference nodes?
What is the proper way to do this? For example: I have two .sks files that both have a custom class associated with them. If I include a reference node on one of them and link that reference node to the other .sks file and run the project I experience a crash.Attemped to add a SKNode which already has a parent: <SKSpriteNode> name:'SKSpriteNode_0' texture:['nil'] position:{596.5, 412.5} scale:{1.00, 1.00} size:{100, 100} anchor:{0.5, 0.5} rotation:0.00The reference node works without custom classes. I am also unsure whether I should be inheriting from SKScene, or SKNode in my custom classes. Doing either seems to cause a crash. If I inherit from SKNode I get the above message. If SKScene I get an error about adding a physics world to one that already exists, which makes sense.
2
0
899
Jun ’15
Custom Keyboard Crash
Hello,I made a custom keyboard. Everything works fine except of two things:(I am using Xcode 7 and am testing the app on my iPhone 5.)1. When I turn the device from portrait to landscape or the other way roundsometimes it does not change the formation and crashs.I wonder why this happens only sometimes and not every time the first time.2. When my phone is not connected to Xcode it does not work likewhen it is connected to the computer.It crashs when I was not in the app for around 5-10 seconds and I openit again then.It does not pop up again and a restart is necessary.
Topic: UI Frameworks SubTopic: UIKit Tags:
2
0
438
Jun ’15
Testflight Crash Reports only for live apps?
We are using pre-release build tsting via Testflight. Though the app crashes, I am not getting any Crash Reports in Xcode. Is this normal? Strangely, I did get a handful of crash reports with the first release, but none since.Furthermore, Apple support says that Testflight does not send reports for prerelease builds - only for live apps in the store. But this makes no sense to me, so I wanted to see if this is the case for everyone or just for me (not getting reports for apps you're beta testing). What's the point of Testlfight if you don't get any crash reports? You can use Ad Hoc builds to get the app into testers' hands...
26
0
12k
Jun ’15
Reply to Can't archive app: "Command failed due to signal: Abort trap: 6"
If possible, please file a bug for this issue and attach the project which is causing the crash.If you are unable to attach the full project, please look at the build log and try to determine exactly what command is crashing with the Abort 6 message. If it is the compiler, you should be able to open the source file which is crashing, then use Product > Perform Action > Preprocess ... to generate a preprocessed source file which can be attached to the bug and used by us to isolate the crash.
Jun ’15
Reply to Swift Terminal Window in Xcode Beta
There are a couple of things that you could be referring to:If you have a swift app, cmd-shift-Y is the default keybinding to open the Console where the output of print() will go.If you pause in the debugger, LLDB understand swift code. From there, you can type repl to get an interactive swift session:(lldb) repl1>Just typing xcrun swift from Terminal.app will give you the same thing. It will still be lldb, but it will jump directly into repl mode for you to play around with Swift.Is that what you had in mind?
Jun ’15