Search results for

dsym file

75,616 results found

Post

Replies

Boosts

Views

Activity

Reply to Problems with Mail.app
Seeing quite a few beach-ball moments with mail.app. Also seeing the re-ordering reverting to default / preferences:accounts form.Seems prone to crashing when composing messages in full-screen mode.Seems that anything to do with signing / encrypting messages causes major slow-downs even on small text only messages. But other slowdowns for filing / reorganisation too.
Topic: App & System Services SubTopic: Core OS Tags:
Jun ’15
Restricted /bin directory after 10.11 upgrade
My /bin directory now has a restricted flag on it. Even with sudo i can't change anything. I tried using chflags to remove it without luck. % ls -alO / | grep -i restricted !2008drwxr-xr-x@ 4 root wheel restricted 136 Jun 8 16:17 Systemdrwxr-xr-x@ 56 root wheel restricted,hidden 1904 Jun 8 16:30 binlrwxr-xr-x@ 1 root wheel restricted,hidden 11 Jun 8 16:23 etc -> private/etcdrwxr-xr-x@ 59 root wheel restricted,hidden 2006 Jun 8 16:24 sbinlrwxr-xr-x@ 1 root wheel restricted,hidden 11 Jun 8 16:23 tmp -> private/tmpdrwxr-xr-x@ 12 root wheel restricted,hidden 408 Jun 8 16:30 usrlrwxr-xr-x@ 1 root wheel restricted,hidden 11 Jun 8 16:24 var -> private/varI also tried adding my user to the perms, sudo su as root cant even move files there.Making it really difficult to edit the scripts i have there.I even did a permission verify and repair on the disk.MacBook (Retina, 12-inch, Early 2015)1.2 GHz Intel Core M8 GB 1600 MHz DDR3INTEL HD Graphics 5300 1536 MBAvailable: 430.94 GB (430,935,441,408 bytes) C
3
0
3.5k
Jun ’15
Reply to Does anyone have sample code for complications?
Hi,I found it complicated to get the complications to show up in the Simulator—the code was relatively simple, but placeholders didn’t seem to show up due to caching issues.The video ‘Creating Complications with ClockKit’ is definitely the best place to start—the code below is based on the code shown in the video.Create a new project------------------------------------------I found it easier to create a new project with the complication support added in (which also generates the stubs for the data source protocol functions), and then add that to my existing project. + File > New > Project > watchOS > Application (‘iOS App with WatchKit App’) + Add in ‘Include Complication’Targets------------------------------------------Check the following settings for the WatchKit Extension target: + Target > WatchKit Extension + Complications Configuration: + Data Source Class = %(PRODUCT_MODULE_NAME).ComplicationController + Supported Families: check required families (only check the ones you’re han
Topic: App & System Services SubTopic: Core OS Tags:
Jun ’15
Reply to Questions about NSCalendar
I'm getting a bit futher.let dayHourMinuteSecond = NSDateComponentsFormatter() dayHourMinuteSecond.allowedUnits = [.Day, .Hour, .Minute, .Second]Now conforms to the new way Swift 2.0 wants things formatted.I'm trying to figure out the calculated calendar time difference between two dates. Pretty simple. I think the function is the following: (using the autofill template),let userCalendar = NSCalendar.currentCalendar() let difference = userCalendar.components( <#T##unitFlags: NSCalendarUnit##NSCalendarUnit#>, fromDate: <#T##NSDate#>, toDate: <#T##NSDate#>, options: <#T##NSCalendarOptions#>)So my code with my variables would read (with the components used from the formatter above (which the compiler is happy with)let difference = userCalendar.components( dayHourMinuteSecond, fromDate: goHomeYoureDrunkTime, toDate: badPoetryDay, options: NSCalendarOptions)But I can't find any value that satisfies the Options for this. In my other code, WrapComponents was the only value that worked, even t
Topic: Programming Languages SubTopic: Swift Tags:
Jun ’15
Xcode 7 crashes when opening Swift iBook playground in El Capitan
Hello,When I attempt to open the Guided Tour playground file mentioned in the pre-release Swift programming book in Xcode 7 on El Capitan (first build), Xcode crashes immediately upon opening. I've been able to use it fine with other projects/playgrounds etc, its just this indiviudal one.I've included a snippet of the crash log - does anyone know of a fix for this?Thanks in advance.Crashed Thread: 0 Dispatch queue: com.apple.main-thread Exception Type: EXC_CRASH (SIGABRT) Exception Codes: 0x0000000000000000, 0x0000000000000000 Exception Note: EXC_CORPSE_NOTIFY Application Specific Information: ProductBuildVersion: 7A120f ASSERTION FAILURE in /Library/Caches/com.apple.xbs/Sources/IDELanguageSupport/IDELanguageSupport-8102.19/IDELanguageSupportUI/Playground/Editor/IDEPlaygroundSourceTextScrollView.m:322 Details: result should be an instance inheriting from IDEPlaygroundTextView, but it is nil Object: <IDEPlaygroundSourceTextScrollView: 0x7f8ffd8cebc0> Method: -_drawGutterAndResultSidebarBackgroun
0
0
217
Jun ’15
Reply to Restore WatchOS to 1.0
I normally hate complaints about running betas, so I know this is hypocritical, but really disappointed with this beta, as even if I wanted to run to the Apple Store and buy an Apple Watch just for testing, I am unable to as they're not available for purchase. I know we jumped the gun I guess, I just expected there to be some reasonable level of QA that went into this release. But I get no notifications, weather has me in the south Atlantic Ocean, Siri doesn't work, most of the time I raise my wrist the device doesn't recognize the gesture, none of my glances are working, and half of the time I go to install an app, the watch tells me that there is no space available despite there being about 5GB free. If I file a radar, it'll get marked as a dupe, and I can't take it to the Apple Store because the genius will tell me that it's an out-of-warranty repair/issue, as I've installed a beta OS.
Topic: App & System Services SubTopic: Core OS Tags:
Jun ’15
Notes from Thursday Security Lab
System Integrity ProtectionQuestion:Will disabling SIP be available as a choices .XML at install time for the 10.11 OS? If not, what mechanism will be provided for automatic disabling of SIP for use with automated imaging processes for machines?Pain point: Not every environment will be able to access Internet Recovery. At the same time, straight cloning of existing disks is problematic.Answer:SIP is always off in the Recovery environment and the Installer environment. While booted from those environments, you will be able to make changes to a boot disk which is otherwise protected by SIP.SIP-protected files will still appear as restricted when listed with ls's -O, but they can be renamed, moved, deleted or changed.There will be a command line tool to disable SIP in the Recovery environment, separate from the current GUI tool. The GUI tool is in fact going to disappear in favor of the command line tool. This change will likely appear in Developer Beta 2 or Beta 3; check the release notes.Question:The
6
0
5.9k
Jun ’15