osx-extensions

OS X Finder Sync Extension

ぐ巨炮叔叔 提交于 2019-12-30 10:27:29
问题 I am not able to create a simple Finder Sync Extension. I have created a new OS X project and added the Finder Sync Extension target and I ran the extension attached to finder. The code appears to be running the init methods and the toolbar items methods are getting called but nothing is displaying in finder. The terminal is showing this when it runs 2015-04-20 12:45:52.700 pcssyncextension[3196:62451] Failed to connect (colorGridView) outlet from (NSApplication) to (NSColorPickerGridView):

Is it possible to run pluginkit from a process running as root?

99封情书 提交于 2019-12-08 03:55:02
问题 I'm trying to run pluginkit (The executable that manages extensions on OS X) from a launch daemon running as root. /usr/bin/pluginkit -m -i "<identifier>" fails with an output of match: Connection invalid . This is not terribly unexpected, since extension settings are handled on a per-user basis. However, I've tried to use su to run pluginkit as a normal user, and it still doesn't work. su <username> -l -c "/usr/bin/pluginkit -m -i "<identifier>" also fails with an output of match: Connection

OS X Finder Sync Extension

会有一股神秘感。 提交于 2019-12-01 09:36:45
I am not able to create a simple Finder Sync Extension. I have created a new OS X project and added the Finder Sync Extension target and I ran the extension attached to finder. The code appears to be running the init methods and the toolbar items methods are getting called but nothing is displaying in finder. The terminal is showing this when it runs 2015-04-20 12:45:52.700 pcssyncextension[3196:62451] Failed to connect (colorGridView) outlet from (NSApplication) to (NSColorPickerGridView): missing setter or instance variable 2015-04-20 12:45:52.701 pcssyncextension[3196:62451] Failed to

How to use Crashlytics with iOS / OS X today view extensions?

房东的猫 提交于 2019-11-28 05:50:32
Since today extensions run as separated a process I am sure they will not log any crashes out of the box. I assume we need to initialize Crashlytics on the widget separately. E.g. in the viewDidLoad method of the TodayViewController . Is anybody already using Crashlytics inside any iOS / OS X extensions? If so, how did you implemented it? I am also wondering if it would make sense to create a separate app in Crashlytics just for the extension. martn_st Crashlytics support got in touch with me and provided these steps. I tested them and it now works for me iOS 8 app. Add the Crashlytics Run

How to use Crashlytics with iOS / OS X today view extensions?

岁酱吖の 提交于 2019-11-27 01:04:59
问题 Since today extensions run as separated a process I am sure they will not log any crashes out of the box. I assume we need to initialize Crashlytics on the widget separately. E.g. in the viewDidLoad method of the TodayViewController . Is anybody already using Crashlytics inside any iOS / OS X extensions? If so, how did you implemented it? I am also wondering if it would make sense to create a separate app in Crashlytics just for the extension. 回答1: Crashlytics support got in touch with me and