Questions tagged [macos-sierra]

The thirteenth release of Apple's desktop and server operating system for Macintosh computers. It is the first Mac software branded as "macOS", which was called "OS X", "Mac OS X", and other variants previously.

macOS Sierra (10.12) is the thirteenth major release Apple Inc.'s desktop and server operating system for Macintosh computers. It was announced on June 13, 2016 at WWDC 2016.

This is the first Mac software to be branded as "macOS", a name chosen for consistency with Apple's other operating systems.

System requirements:

macOS Sierra requires at least 2GB of RAM and 8GB of storage space and will run on:

  • iMac: Late 2009 or newer
  • MacBook: Late 2009 or newer
  • MacBook Pro: Mid 2010 or newer
  • MacBook Air: Late 2010 or newer
  • Mac Mini: Mid 2010 or newer
  • Mac Pro: Mid 2010 or newer

Sierra is the first version of macOS since OS X Mountain Lion, released in 2012, that does not run on all computers that the previous version supported.

1532 questions
0
votes
0 answers

applescript can't delete any mailbox

how to delete a mailbox? tell application "Mail" delete mailbox "complaints" of account "ACME LLC" end tell gives me error "AppleEvent handler failed." number -10000" MacOs Sierra 10.12 It is not a problem of file permission because renaming…
Zantafio
  • 527
  • 4
  • 8
0
votes
1 answer

Local cocoapods sources in debugger displayed in asm in XCode 8

I am developing number of pods and store them in my own private repo. So I can install pods as usual, from this repository pod "SomePod", or install locally (Development pods) with pod "SomePod", :path => "~/SomePath/ToPod" When using local pods…
Accid Bright
  • 592
  • 5
  • 17
0
votes
1 answer

phpinfo sending empty response (MacPorts)

When I add phpinfo(); to a running site's index.php (or even a blank page), the server sends an empty response. Relevant info: If I remove phpinfo(); the page(s) behave as expected. The sites also respect the Apache redirect directives. I use…
cwallenpoole
  • 79,954
  • 26
  • 128
  • 166
0
votes
1 answer

How to use NSUndoManager on macOS 10.12?

I read in the documentation that NSManagedObjectContext now defaults to a nil NSUndoManager on macOS. How can I set NSUndoManager?
93sauu
  • 3,770
  • 3
  • 27
  • 43
0
votes
1 answer

CodeSign error when building Objective C app on XCode 8 / macOS Sierra

I maintain a pretty old Objective C, iOS app. After switching to Xcode 8 + Sierra, I started getting a CodeSign error: XXXXX.app: resource fork, Finder information, or similar detritus not allowed Command /usr/bin/codesign failed with exit code…
0x6A75616E
  • 4,696
  • 2
  • 33
  • 57
0
votes
2 answers

Installing Xcode 8 on pre-installed Xcode 7.3.1 [Using multiple version]

Hi I am currently using Xcode 7.3.1 on macOS Sierra. Due to the issue ERROR ITMS 90167. I can't upload my archive using Xcode 7.3.1. So, It's time to upgrade Xcode 8. But, unfortunately, I can't use Xcode 8 to Develop application due to migration…
Thiha Aung
  • 5,036
  • 8
  • 36
  • 79
0
votes
1 answer

macOS Swift Apps uncompilable with exit 1 signal 0

I am currently developing two macOS applications, and both of them were bug free until about 9:00 PM on Tuesday, October 4 when both applications all of a sudden were unable to be compiled due to error: Task failed with exit 1 signal 0. Both apps…
Logan Jahnke
  • 815
  • 8
  • 21
0
votes
2 answers

ImageMagick, paperclip, macOs Sierra

I'm totally desperate. I've been trying to install ImageMagick form two days and I still have problems with Paperclip gem i Rails. I'm using macOS Sierra and I've installed the ImageMagick through MacPorts sudo port install ImageMagick I've checked…
elmuzyk
  • 93
  • 12
0
votes
1 answer

Does Python's distutils set include paths for frameworks (osx) when compiling extensions?

I've been working on an extension module for Python but in OSX Sierra it no longer finds headers belonging to the frameworks I'm linking to. It always found them before without any special effort. Has something changed lately regarding include paths…
joeforker
  • 40,459
  • 37
  • 151
  • 246
0
votes
1 answer

Best way to sort through running apps that have UI | Swift3, macOS

So I have an app that analyses the running apps, my code so far func running() -> [NSRunningApplication]{ let base = NSWorkspace() let apps = base.runningApplications return apps } for app in running() { print(app.localizedName) …
user6879072
  • 441
  • 1
  • 7
  • 17
0
votes
1 answer

How to launch terminal and pass it a command programatically? | Swift3, macOS

So my code so far looks like this: import Foundation import AppKit print("Starting") let base = NSWorkspace() print("Launching Terminal") base.launchApplication("Terminal") //launches terminal print("Terminating terminal") let apps =…
user6879072
  • 441
  • 1
  • 7
  • 17
0
votes
0 answers

Xcode Swift App - Automatic Compilation Messes Up Autocomplete

Often, when working on a Swift app in Xcode 8.0/7.3.1, I find that the app automatically (without any input from me) starts compiling source files. It does this every minute or two. This wouldn't normally be an issue - who doesn't like faster…
0
votes
1 answer

OSX Sierra Nsspeechrecognizer issues

Rather than bore you with a bunch of code I will summize it below. In app delegate I create an nsspeechrecognizer set its delegate, add commands, and then start listening. Speech recognizer recognizes the command the first time and continues as…
0
votes
0 answers

Clang error with Theano after upgrading to macOS Sierra and Xcode 8.0

I recently upgraded from macOS Yosemite to Sierra and Xcode 8.0 (I am not sure what was the previous version of Xcode). Before updating everything worked fine. My issue seems to be similar to these…
0
votes
0 answers

C function runs on Mac OS X 10.11 or earlier or on Windows, but crashes in Mac OS X 10.12

I have a dynamically loadable bundle on Mac OS X and it crashes on Mac OS X Sierra. It works fine on earlier Mac OS X versions (at least on 64-bit) and also (this is a cross-platform plug-in and this code is shared) on Windows, both 32- and 64-bit.…
Mikhail Edoshin
  • 2,639
  • 16
  • 25