An open API service indexing awesome lists of open source software.

https://github.com/hansemannn/titanium-ios-classkit

Use the iOS 11.4+ ClassKit API's with Titanium and Hyperloop.
https://github.com/hansemannn/titanium-ios-classkit

classkit hyperloop ios titanium

Last synced: 10 months ago
JSON representation

Use the iOS 11.4+ ClassKit API's with Titanium and Hyperloop.

Awesome Lists containing this project

README

          

# Titanium ClassKit

Use the iOS 11.4+ ClassKit API's with Titanium and Hyperloop.

## Example

```js
import { CLSDataStore } from 'ClassKit';

// Activate Contexts When Users Begin Tasks
CLSDataStore.shared.descendantMatchingIdentifierPathCompletion:['path', 'to', 'section'], (context, error) => {
context.becomeActive();
});

// Deactivate Contexts When Users Finish
CLSDataStore.shared.descendantMatchingIdentifierPathCompletion:['path', 'to', 'section'], (context, error) => {
context.resignActive();
});
```

## License

MIT

## Author

Hans Knöchel