https://github.com/estebanlm/objcbridge
Yet another Pharo-ObjectiveC bridge, using UnifiedFFI as backend
https://github.com/estebanlm/objcbridge
objective-c pharo
Last synced: over 1 year ago
JSON representation
Yet another Pharo-ObjectiveC bridge, using UnifiedFFI as backend
- Host: GitHub
- URL: https://github.com/estebanlm/objcbridge
- Owner: estebanlm
- License: mit
- Created: 2017-10-09T21:35:18.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2024-05-24T07:12:39.000Z (about 2 years ago)
- Last Synced: 2025-02-28T02:10:18.475Z (over 1 year ago)
- Topics: objective-c, pharo
- Language: Smalltalk
- Size: 87.9 KB
- Stars: 7
- Watchers: 4
- Forks: 3
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ObjcBridge
Yet another Pharo-ObjectiveC bridge, using UnifiedFFI as backend.
# Install
While in fact this can be used generically on ObjC, for obvious reasons it has been tested just on macOS :)
**IMPORTANT:** You need Pharo7+ to run this.
```Smalltalk
Metacello new
repository: 'github://estebanlm/objcbridge/src';
baseline: 'ObjCBridge';
load.
```
## Acknowledge
This bridge is largelly inspired on [John McIntosh's](https://github.com/johnmci) previous bridge, but this one was rewritten to use UnifiedFFI (the new backend for FFI). Credits to him and [Eliot Miranda](https://github.com/eliotmiranda) for made this possible.