Search results for

dsym file

77,668 results found

Post

Replies

Boosts

Views

Activity

MacBook Pro Now Having SSD Space Issue
I installed El Capitan today and have noticed an odd problem with available space on the SSD. Before the install the drive had 130GB available but dropped to 82GB after the install. Weird enough but then I trashed a 50GB file and as it was emptying from the trash the available SSD space actually steadily DROPPED to 62GB. Any insights?
4
0
1.2k
Jun ’15
Reply to How do I link against .tbd files in Xcode 7?
This is a known issue in the Xcode 7 beta.To work around this issue for now, please:Delete all references to .tbd files from either your linked libraries phase, or from the copied bundle resources phase (where they sometimes will be added).Add the library you want to link manually to the Other Linker Flags build settings, by adding the argument: -l<library_name> for each library you want to link (for example, add -lsqlite3 (without quotes)).For those who are curious, the .tbd files are new text-based stub libraries, that provide a much more compact version of the stub libraries for use in the SDK, and help to significantly reduce its download size.
Jun ’15
ErrorType and userInfo dictionaries
NSError has a way to carry additional information around with it: the userInfo dictionary. This includes user-facing information like the localized description, of course, but it also includes tremendously useful details such as underlying errors, particular problem files, etc.ErrorType enums have a way to carry associated data too: values associated with the cases.Is there some way to bridge these two worlds? Obviously the ideal thing would be if Swift synthesized code that automatically mapped associated value tuple fields into userInfo keys, but even if I had to implement a function or computed property to do it myself, that'd be way better than nothing.
9
0
5.9k
Jun ’15
Reply to app crashes during the review
Post the crash log. (the header and crashed thread, at least - don't need the long list of binaries)If it is symbolicated, it should contain the source file and line number if any of your code is involved in the crash. If it's not symbolicated, drag it into the Device Logs view in Xcode's Devices window when you have a device connected. Xcode should then symbolicate it.
Jun ’15
Reply to iCloud login crash in System Preferences
Many people had this same issue. I solved it by deleting all files from the following folder:/Users/<YOUR HOME FOLDER>/Library/Application Support/iCloud/AccountsThen reboot.I was then able to get into the iCloud preference pane, where it asked me for my new password. After giving it, all was working again.
Topic: App & System Services SubTopic: Core OS Tags:
Jun ’15
Reply to Compiler crash
I am seeing this problem as well when I activate whole module optimization in Build Settings.Since I have a ton of Swift files on the command line (shown in the dump), I was wondering if there was a way to tell the compiler to indicate which particular file it was working on just before the crash happens?----------------------------------------------------------------------Assertion failed: (D->getSourceRange().isValid()), function buildDeclarationRefinementContext, file /Library/Caches/com.apple.xbs/Sources/swiftlang/swiftlang-700.0.38.1/src/swift/lib/Sema/TypeChecker.cpp, line 946.0 swift 0x000000010378ae0b llvm::sys::PrintStackTrace(__sFILE*) + 431 swift 0x000000010378b54b SignalHandler(int) + 3792 libsystem_platform.dylib 0x00007fff8b2adf1a _sigtramp + 263 libsystem_platform.dylib 000000000000000000 _sigtramp + 19601246724 libsystem_c.dylib 0x00007fff8fe4cb53 abort + 1295 libsystem_c.dylib 0x00007fff8fe14c39 basename + 06 swift 0x0000000101defe92 (anonymous namespace)::TypeRe
Topic: Programming Languages SubTopic: Swift Tags:
Jun ’15
Reply to iOS 9 Beta battery life
Now I've been able to run my iPhone 6 128GB with iOS 9 beta 1 for 40 minutes straight in standby mode (just viewing some e-mails from time to time, mobile data enabled, all background stuff disabled with not even 1% loss on the battery. Battery saving mode is also disabled. Don't really know what I did.. All I did was viewing the log files through the device viewer in Xcode. Disconnected the cable after a while and ended up where I'm now.. Before viewing the logs in Xcode I rebooted the phone also. But I did not change any settings in the phone from where it was before so I don't really understand what's going onSoon it's actually 50 minutes without any battery loss.. still at the 97% as it was when I disconnected it from my Mac. Seemingly the background activity going on before on the home screen also suddenly stopped.I'm going to spend my weekend looking into this matter a bit deeper, just for the pure fun of it
Topic: App & System Services SubTopic: Core OS Tags:
Jun ’15
Reply to Battery overspending IOS9
I can say that I usually make it from 6:30 to 17:00 with ~40% remaining on a regular work day (with iOS 8.4). With iOS9 I can make it from 6:30 to 12:00 with ~40% remaining. Definitely filing a BR on this one, hopefully it gets fixed in next release. There's a similar problem in WatchOS 2 with battery draining. I used to make it all day with ~40% remaining when I got home from work, now I'm lucky to have ~10%.
Topic: App & System Services SubTopic: Core OS Tags:
Jun ’15