#ios #localnotifications #remotenotifications #pushnotifications

aloe-ios-notifications

A Rust library for managing iOS local and remote notifications, integrating native Objective-C interface with Rust. This crate is a translation of the c++ juce module serving the same function.

1 unstable release

Uses new Rust 2024

new 0.1.2 Apr 3, 2025

#284 in #ios

GPL-3.0 license

545KB
5K SLoC

Aloe iOS Notifications

Aloe iOS Notifications is a Rust library providing seamless integration and management of iOS local and remote push notifications. Leveraging the Rust-ObjC interface, this crate bridges the gap between native iOS notification handling mechanisms and Rust's powerful ecosystem.

Features

  • Push Notifications: Supports registering, sending, and handling push notifications across iOS versions.
  • Local Notifications: Facilitates scheduling and managing local notifications with customizable alerts, sounds, and badges.
  • Actionable Notifications: Provides utilities for handling interactive notification actions, including text input responses.
  • Notification Categories: Create and manage notification categories with specific actions tailored to application needs.

Interface

Trait Definition

pub trait PushNotificationsDelegateInterface {
    fn did_register_user_notification_settings(&mut self, notification_settings: *mut UIUserNotificationSettings);
    fn registered_for_remote_notifications(&mut self, device_token: *mut NSData);
    fn failed_to_register_for_remote_notifications(&mut self, error: *mut NSError);
    fn did_receive_remote_notification(&mut self, user_info: *mut NSDictionary<NSObject,NSObject>);
    fn did_receive_remote_notification_fetch_completion_handler(&mut self, user_info: *mut NSDictionary<NSObject,NSObject>, completion_handler: fn(result: UIBackgroundFetchResult) -> c_void);
    ...
}

Struct Definitions

The library defines several iOS-specific structures such as UIApplication, UILocalNotification, UIUserNotificationSettings, etc., to offer full-fledged notification support.

Implementations

Seamlessly transform between custom Rust structures and native iOS notification representations, ensuring robust notification lifecycle management.

Usage

This crate is designed to be used with Rust edition 2024. Add the following to your Cargo.toml:

[dependencies]
aloe-ios-notifications = "0.1.0"

Ensure that you have the necessary iOS-specific setup in your Xcode project to leverage full notification functionality through this crate.

Promotions

Dive into the world of iOS development with Rust and transform how you handle notifications in your apps. Aloe iOS Notifications provides the reliability of Rust with the flexibility of iOS.


This README was generated by an AI model and may not be 100% accurate; however, it should provide a robust overview of the crate's functionality and setup.

This crate is a translation of the JUCE module.

JUCE is a c++ software framework for developing high performance audio applications.

Usage falls under the GPLv3 as well as the JUCE commercial license.

See github.com/juce-framework/JUCE and the JUCE license page for details.

This crate is in the process of being translated from c++ to rust. For progress updates, please see the workspacer rust project. designed specifically for rust projects.

Dependencies

~15–27MB
~439K SLoC