Skip to content

Tweak to craft Bulletins for notifications on jailbroken tvOS

License

Notifications You must be signed in to change notification settings

lechium/bulletinh4x

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

bulletinh4x

Tweak to craft Bulletins for notifications on jailbroken tvOS

To use this library add the Dependency 'com.nito.bulletinh4x'

Inside your project you will need to add minimal headers for NSDistributedNotificationCenter

the following is sufficient, you can also put it in a separate header file if you would like.

@interface NSDistributedNotificationCenter : NSNotificationCenter

+ (id)defaultCenter;
- (void)addObserver:(id)arg1 selector:(SEL)arg2 name:(id)arg3 object:(id)arg4;
- (void)postNotificationName:(id)arg1 object:(id)arg2 userInfo:(id)arg3;

@end

From there you can call a notificaiton like the following ANYWHERE from your code to create a bulletin notification.

NSMutableDictionary *dict = [NSMutableDictionary new];
dict[@"message"] = @"Your Message";
dict[@"title"] = @"Your Title";
dict[@"timeout"] = @2;
UIImage *image = [UIImage imageNamed:@"notifIcon"];
NSData *imageData = UIImagePNGRepresentation(image);;
if (imageData){
    dict[@"imageData"] = imageData;
}

[[NSDistributedNotificationCenter defaultCenter] postNotificationName:@"com.nito.bulletinh4x/displayBulletin" object:nil userInfo:dict];

The following types are supported for images: URLs, IDs & raw data (illustrated above), I actually have yet to test the URL method, but assuming it just takes a URL in NSString format.

The key to send to specific a URL is @"imageURL" The key to specify an "ID" is "imageID" These ID's represent assets available on tvOS by default and include images like the remote, bluetooth, etc. The list of ID's i have discovered is listed below:

PBSSystemBulletinImageIDAlert
PBSSystemBulletinImageIDAudio
PBSSystemBulletinImageIDB39
PBSSystemBulletinImageIDBluetooth
PBSSystemBulletinImageIDController
PBSSystemBulletinImageIDDoorbell
PBSSystemBulletinImageIDKeyboard
PBSSystemBulletinImageIDMusic
PBSSystemBulletinImageIDPairing
PBSSystemBulletinImageIDPodcast
PBSSystemBulletinImageIDRemote
PBSSystemBulletinImageIDRemoteBatteryWarning
PBSSystemBulletinImageIDRemoteCharging
PBSSystemBulletinImageIDTapToRadar
PBSSystemBulletinImageIDScreenSharing
PBSSystemBulletinImageIDTV
PBSSystemBulletinImageIDVolume
PBSSystemBulletinImageIDRemoteExt1
PBSSystemBulletinImageIDPower

About

Tweak to craft Bulletins for notifications on jailbroken tvOS

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published