• Stars
    star
    152
  • Rank 244,685 (Top 5 %)
  • Language
    Objective-C
  • Created almost 11 years ago
  • Updated almost 11 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Private API showcase for NSUserNotification on OS X

NSUserNotificationPrivate

Private API showcase for NSUserNotification

Example app

Around OS X, you can see quite a few features in the Notification Center API (NSUserNotification et. al) that aren't being exposed to developers publicly. For example, the way that iTunes uses album artwork in place of its icon.

I class-dumped the NSUserNotification header and quickly found how to access these features and put together an example app to make it easy to try each one. Here's an overview of the private stuff I found (there's probably more):

(NOTE: This should go without saying, but using any of this will result in your app being rejected from the MAS and potentially breaking if the APIs change. This is just for fun.)

Identity Image

This is how iTunes swaps in album artwork for the icon. When the _identityImage property is set, it shows the set image in place of the icon and moves the app icon to the left of the notification title. The default value of nil makes it use the app icon. The result looks like this:

Identity image

There's even an option to turn off the default border by setting the _identityImageHasBorder to NO.

Ignore Do Not Disturb

The _ignoresDoNotDisturb property allows you to override the user's Do Not Disturb settings and post the notification anyways. Default value is NO.

Lockscreen Only

The _lockscreenOnly property allows you to make it so that a notification is only posted if the computer is locked. This means that you can only see the missed notification in the lock screen and it disappears as soon as you unlock the computer. Default value is NO.

Poofs on Cancel

If the notification type is set to "Alert", the _poofsOnCancel property lets you configure whether there should be a poof animation when the Cancel button is clicked. Default value is YES.

Show Alternate Action Menu

If the notification type is set to "Alert", the alternateActionButtonTitles property lets you set an array of additional menu item titles to be shown in an action menu that can be accessed by hovering on the Action button and clicking on the arrow. It looks like this:

Action items

Once a notification is handled, the index of the action can be retrieved using the _alternateActionIndex property.

License

There's hardly any code here, do whatever you want with it.

More Repositories

1

InAppViewDebugger

A UIView debugger (like Reveal or Xcode) that can be embedded in an app for on-device view debugging
Swift
1,871
star
2

CocoaMarkdown

Markdown parsing and rendering for iOS and OS X
Objective-C
1,200
star
3

INAppStoreWindow

NSWindow subclass with a highly customizable title bar and traffic lights
Objective-C
1,064
star
4

DominantColor

Finding dominant colors of an image using k-means clustering
Swift
959
star
5

MarkdownTextView

Rich Markdown editing control for iOS
Swift
686
star
6

SwiftAutoLayout

Tiny Swift DSL for Autolayout
Swift
655
star
7

SNRHUDKit

Code drawn AppKit HUD interface elements
Objective-C
326
star
8

swiftrsrc

Resource code generation tool for Swift
Swift
290
star
9

INDANCSClient

Objective-C Apple Notification Center Service Client
Objective-C
252
star
10

INPopoverController

A customizable popover controller for OS X
Objective-C
196
star
11

SNRSearchIndex

SearchKit backed search for Core Data
Objective-C
190
star
12

Unzip

iOS 8 Action Extension for browsing ZIP files
Objective-C
165
star
13

SNRMusicKit

All-in-one framework for browsing and playing music from various sources on iOS and OS X
Objective-C
150
star
14

WWDC-2014

Scholarship submission for WWDC 2014
Objective-C
146
star
15

Ares

Zero-setup P2P file transfer between Macs and iOS devices
Swift
133
star
16

INDockableWindow

A window to which other views can be "docked" to and separated into their own windows
Objective-C
114
star
17

INDLinkLabel

A simple, no frills UILabel subclass with support for links
Swift
82
star
18

SNRFetchedResultsController

Automatic Core Data change tracking for OS X (NSFetchedResultsController port)
Objective-C
81
star
19

INDSequentialTextSelectionManager

Sequential text selection for NSTextViews
Objective-C
74
star
20

OEGridView

High performance Core Animation-based grid view, originally from OpenEmu.
Objective-C
72
star
21

INDGIFPreviewDownloader

[iOS] Retrieves preview images for GIFs by downloading only the first frame
Objective-C
60
star
22

Chip8

CHIP-8 emulator and disassembler written in Swift
Swift
53
star
23

pdfcat

OS X utility for concatenating PDF files
Swift
49
star
24

ReactiveXPC

Signals across process boundaries
Swift
36
star
25

ObjectiveKVDB

Objective-C wrapper for kvdb (https://github.com/dinhviethoa/kvdb)
Objective-C
33
star
26

SwiftTableViews

Type-safe Table Views with Swift
Swift
33
star
27

AlamofireRACExtensions

ReactiveCocoa Swift extensions for Alamofire
Swift
32
star
28

Dial

The beginnings of a replacement Contacts app for iOS.
Objective-C
30
star
29

ReactiveBLE

ReactiveCocoa wrapper for communicating with BLE devices using CoreBluetooth
Objective-C
29
star
30

INSOCKSServer

SOCKS5 proxy server implementation in Objective-C
Objective-C
27
star
31

LiveWebPreview

Web development tool for automatically refreshing a page when the content changes.
Objective-C
20
star
32

SNRLastFMEngine

[DEPRECATED] A modern block-based Objective-C interface to the Last.fm API
Objective-C
19
star
33

AttributedString.swift

Swift library that adds type safety and string interpolation support to NSAttributedString
Swift
18
star
34

INKeychainAccess

[DEPRECATED] Objective-C Keychain Services Wrapper for OS X and iOS
Objective-C
17
star
35

tecs

Projects for The Elements of Computing Systems by Nisan and Schocken
Assembly
15
star
36

INTrafficLightsDisabler

SIMBL plugin to hide the traffic lights on Mac OS X
Objective-C
14
star
37

pebble-lifx

Pebble controller for LIFX bulbs. UAlberta CompE Club Hackathon 2014 project.
Objective-C
11
star
38

xcode-themes

Color themes for Xcode 4 and 5
6
star
39

radars

Apple Radars filed for OS X and iOS.
Objective-C
5
star
40

indragiek.github.com

http://indragie.com
HTML
3
star
41

arduino-copter

Copter game for Arduino + Adafruit TFT
C++
2
star
42

writing

Things that I write
2
star
43

advent-of-code-2020

My Rust solutions for https://adventofcode.com
Rust
1
star
44

bootstrap-no-responsive

Compiled Bootstrap with responsive features disabled
1
star