Search results for

dsym file

75,649 results found

Post

Replies

Boosts

Views

Activity

Keychain error -34018 (errSecMissingEntitlement)
This is a continuation of from the old forums: https://devforums.apple.com/thread/246122Calling SecItemCopyMatching will sometimes return an OSStatus of -34018 (errSecMissingEntitlement). This seems to happen when the system is running low on memory. This has not been fixed in iOS9. I've of course filed radars about this and I would encourage others to do the same while iOS 9 is under development.
105
0
105k
Jun ’15
Reply to unable to debug watchOS 2 app with Xcode 7
It turns out that although the WatchKit app was upgraded by Xcode to WatchOS 2-type, it didn't really work. I had to make a new target and drag files over and change which bundle they were part of. After that, it didn't work due to an inclusion of a framework that didn't allow for Core Location methods but that's another issue.Hope that helps.
Topic: App & System Services SubTopic: Core OS Tags:
Jun ’15
Xcode 7 crash every time I open a new or existing project.
If I go through the new project wizard, or try to open an existing project, I get the same crash every time. It's something from XCSService, and I see keychain mentioned, so I tried relaunching keychain accessing, restarting my machine, etc. Keeps happening. Any workaround?Process: Xcode [516]Path: /Applications/Xcode-beta.app/Contents/MacOS/XcodeIdentifier: com.apple.dt.XcodeVersion: 7.0 (8123.26)Build Info: IDEFrameworks-8123026000000000~7Code Type: X86-64 (Native)Parent Process: ??? [1]Responsible: Xcode [516]User ID: 501Date/Time: 2015-06-11 16:20:14.544 -0400OS Version: Mac OS X 10.10.3 (14D136)Report Version: 11Anonymous UUID: A12E8E79-DAD1-FC5C-0724-7549D29029DATime Awake Since Boot: 200 secondsCrashed Thread: 0 Dispatch queue: com.apple.main-threadException Type: EXC_BAD_ACCESS (SIGSEGV)Exception Codes: KERN_INVALID_ADDRESS at 0x0000000000000000VM Regions Near 0:--> __TEXT 00000001088e6000-00000001088e7000 [ 4K] r-x/rwx SM=COW /Applications/Xcode-beta.app/Contents/MacOS/XcodeApplication Specific In
2
0
1.7k
Jun ’15
Notes from Thursday Education and Enterprise Development Lab
Question:What does opendirectoryd's FDESupport module do?Answer:That's the module which is responsible for taking password updates from opendirectoryd and updating the FV 2 pre-boot login password. It's a helper utility.Question:Does fdesetup sync also help sync passwords from a directory service?Answer:No, it does not sync passwords. (Same message from both Security and Enterprise labs.)Question:Is there a way to run a deferred enablement, which also allows the enablement of a second account. For the purposes of the question, assume that the second account's password has been provided.Use cases that may apply:A. An enterprise that wants deferred enablement for the primary user of the machine, but also wants to enable the local admin account for FV 2.Answer:Please file enhancement requests. (Same message from both Security and Enterprise labs.)Question:When using fdesetup enable -inputplist the password is clear text in the plist. Can this be changed so that the password can be hashed? A colleague of
2
0
3.1k
Jun ’15
Reply to Notes from Thursday Education and Enterprise Development Lab
Managed Distribution Does Managed Distribution Device Assignment support in-app purchases? iAP not supported with MDM device assignment in iOS 9. Apple is aware of the desire for this feature and are discussion the best approach.Apple Configurator 2 An admin can export a company profile and import to as many machines as needed. Single sToken - cannot use institutiontal sToken with a seperatel location sToken for application deployment. The ideal method for Managed Distribution Device Assignemnt will be utilizing AC 2 as a mechanism to auto-enroll into an MDM. App thinning is not supported with Apple Configurator.iOS 9 How will iOS handle storage constraints for iOS updates? Currently, the iOS update command will fail the device will not be able to silently update. Similarly to non-silent updates, 50% battery is required for installation. A future update to iOS (not iOS 9) may do the following: Delete tagged App thinning Application data Delete Managed Applications -> Update iOS -> Push Managed Applicati
Topic: App & System Services SubTopic: Core OS Tags:
Jun ’15
Reply to nsscrollview
If you already have an Xcode project, then (presumably) you already have a window in a storyboard or a XIB file. Go to that file and open up the Utilities panel on the right side of the IB window (View -> Show Utilities), then display the object library at the bottom (the 3rd of the 4 icons in the toolbar at the bottom) by clicking on it.Look for the scroll view in the list of available objects. You can type scrollview in the text field that's now at the bottom to filter out the irrelevant items, if you want. Drag the scroll view object into your window (if XIB) or window view controller (if storyboard). You have several other tasks to complete before this scroll view is useful (size it and add autolayout constraints, add an outlet to your code that refers to it, etc), but at least you have the scroll view you asked about.
Topic: UI Frameworks SubTopic: AppKit Tags:
Jun ’15
Document provider Move operation problem
Hello, I am having problem with the implementation of a Document Provider, with the “move” operation in particular. The export/import/open operations are working fine. I did look for information in the Document Provider documentation, the developers forum, stackoverflow and still not able to get it to work.Here is what is happening, when the operation is initiated from word (word is using a move operation when creating a new file), the URL is handed over to the provider (works fine).However when I try to copy the file located at this URL to my application the file is empty.I tested the same workflow with other providers it works.Any advice, hints will be really appreciatedBest Regards,
Topic: UI Frameworks SubTopic: AppKit Tags:
2
0
551
Jun ’15
Reply to Connecting to Superclass Properties
Here is the full @interface and @implementation of the CoreDataFetchedResultsController Class. I am using a bridging header file for since it's in Objective-C. I've also included the .swift file that is a subclass. I am sorry for the impcomlete code in the code above.Thanks for the recommendation on the new Swift stuff. I'll be sure to take a look.Take care,Jon.h#import <UIKit/UIKit.h> #import <CoreData/CoreData.h> @interface CoreDataFetchedResultsViewController : UIViewController <NSFetchedResultsControllerDelegate, UITableViewDataSource, UITableViewDelegate> / @property (strong, nonatomic) NSFetchedResultsController *fetchedResultsController; @property (nonatomic, strong) UITableView *storyTableView; @property (nonatomic, strong) UIRefreshControl *refreshControl; / @property (nonatomic) BOOL suspendAutomaticTrackingOfChangesInManagedObjectContext; @property BOOL debug; / - (void) performFetch; @end.m@interface CoreDataFetchedResultsViewController () @property (nonatomic)
Jun ’15
Reply to Why?
I guess the use of such threads is to see if anyone else is thinking the same thing so1. You know you are not crazy.2. Perhaps people at Apple visit the dev forums from time to time (they do).But yeah...I might file a formal bug report. I'm not getting email notifications when people reply in threads I posted. I think the old forums would have been perfect if they just made the site responsive.I'm typing in bold. Please note that I am not mad. I am not screaming. I just can't read the regular font.Please everyone type in bold so we can read the posts. 🙂
Jun ’15
Conflicts drawing badges when running multiple Finder Sync extensions
There is an unfortunate behavior when multiple Finder Sync extensions are simultaneously running. If two or more Finder Sync extensions are configured to watch the same folders by setting [FIFinderSyncController defaultController].directoryURLs, then there's a race condition where badges will only be requested ( via requestBadgeIdentifierForURL) and drawn from the extension that started first. Normally, this wouldn't be an issue if extensions are only watching the folders they created, but Dropbox for instance seems to monitor the entire ~/Documents folder (not just their own Dropbox folder), so if the Dropbox Finder Integration extension runs first, no other extension will show its file badges.So what is the expected behavior if two Finder Sync extensions are watching the same folders? There needs to be some intelligent logic to determine which extension gets to show its badges (maybe whoever has registered the folder closest to the actual folder, so whoever is monitoring ~/Documents/MyFolder would
Topic: UI Frameworks SubTopic: AppKit Tags:
1
0
525
Jun ’15
Safari shows a 404 error, but not the error path
Today while developing a web app, I noticed a 404 error in the console. However, unlike most 404 console errors, it did not show the path to the resource (html file) it was trying to load. Typically, I use this info to instantly determine whether there is a typo in my code or if a resource was not uploaded, etc.Is this by design? Am I missing something?
0
0
433
Jun ’15
UISplitViewController and launch storyboard
Greetings,I have an iOS 8 Swift-based app using a UISplitViewController as its root view controller. My project's deployment setting is iOS 8.0 and I had to use launch images (and not a launch storyboard) because launch storyboards did not support containers such as UINavigationController, UISplitViewController and UITabBarController (this is quoted from a DTS response I got).In comes iOS 9 with its iPad multitasking feature, which requires using launch storyboards. Things seem to work (on iOS 9) if I specify my main storyboard as a launch storyboard but iOS 8 displays a black screen during launch. Strangely, if I check the Use as launch screen checkbox for the main storyboard, the compiler spits out an error (Launch screens may not have connections). Using a XIB file (with a UISplitViewController within) as a launch file seems to kind of work on both iOS 8 and iOS 9 but I can't seem to be able to modify the UISplitViewController in IB.This is quite puzzling as there is no way to have the sy
2
0
1.7k
Jun ’15
Reply to Xcode 6.3.2 "forgetting" source control
Ok, I've got it sort of narrowed down. I setup a new user on my machine, checked out the source, and opened it with Xcode. No problems.Then I went to build and run, and hit the you don't have a profile, import one or revoke and re-issue dialog. So, I exported the profile from my regular user login, and imported it in the new user. Boom. Shortly all the ?s were showing up on my source files just like on my regular user login. So it's got something to do with whatever was imported. When I exported, I was surprised to find that it exported 4 accounts - not just the one I was expecting, so there must be something funky in one of those accounts.From my usual login, I had previously tried deleting all the accounts (under Xcode->Preferences->Accounts), to no avail. So I've a clue where the problem lies, but still no idea how to fix it easily (and I'm not counting having to create a new account as easy!).
Jun ’15