Home

Awesome

network_ios: network related commands for ios_system

<p align="center"> <img src="https://img.shields.io/badge/Platform-iOS%2014.0+-lightgrey.svg" alt="Platform: iOS"> <a href="https://github.com/holzschu/network_ios/actions"><img src="https://github.com/holzschu/network_ios/workflows/CI/badge.svg" alt="Build Status"/></a> <br> <a href="http://twitter.com/nholzschuch"><img src="https://img.shields.io/badge/Twitter-@nholzschuch-blue.svg?style=flat" alt="Twitter"/></a> </p>

ios_system is a replacement for system() that is compatible with AppStore rules and the iOS programming API. Commands are provided as dynamic libraries and loaded as they are required by the user.

ios_system itself contains basic commands, operating on files (ls, mv, rm, tar, curl, grep...) More advanced commands are provided separately. network_ios is one of these extensions. To use it, just compile it and add it to the list of embedded libraries in your app (on top of all the libraries generated by ios_system, of course). There is no change to make to ios_system: if the libnetwork_ios.dylib is present, it will execute the commands. Otherwise, it won't (but that's hardly surprising).

Commands available in this package:

If you run them inside OpenTerm, the interactive versions work. I can't speak for other applications.

How to compile:

run ./compile_network_ios.sh: this will create the binary framework network_ios.xcframework, which you can use in any Xcode project.

How to link:

Add this project as a Swift package dependency to your Xcode project, then embed the network_ios.xcframework framework.