JSON Apps for Apple iPhone

View 19956 business solutions

Browse free open source JSON apps and projects for Apple iPhone below. Use the toggles on the left to filter open source JSON apps by OS, license, language, programming language, and project status.

  • SKUDONET Open Source Load Balancer Icon
    SKUDONET Open Source Load Balancer

    Take advantage of Open Source Load Balancer to elevate your business security and IT infrastructure with a custom ADC Solution.

    SKUDONET ADC, operates at the application layer, efficiently distributing network load and application load across multiple servers. This not only enhances the performance of your application but also ensures that your web servers can handle more traffic seamlessly.
  • Digital Payments by Deluxe Payment Exchange Icon
    Digital Payments by Deluxe Payment Exchange

    A single integrated payables solution that takes manual payment processes out of the equation, helping reduce risk and cutting costs for your business

    Save time, money and your sanity. Deluxe Payment Exchange+ (DPX+) is our integrated payments solution that streamlines and automates your accounts payable (AP) disbursements. DPX+ ensures secure payments and offers suppliers alternate ways to receive funds, including mailed checks, ACH, virtual credit cards, debit cards, or eCheck payments. By simply integrating with your existing accounting software like QuickBooks®, you’ll implement efficient payment solutions for AP with ease—without costly development fees or untimely delays.
  • 1
    gSOAP Toolkit

    gSOAP Toolkit

    Development toolkit for Web Services and XML data bindings for C & C++

    The gSOAP toolkit is an extensive suite of portable C and C++ software to develop XML Web services with powerful type-safe XML data bindings. Easy-to-use code-generator tools allow you to directly integrate XML data in C and C++. Serializes native application data in XML. Includes WSDL/XSD schema binding and auto-coding tools, stub/skeleton compiler, Web server integration with Apache module and IIS extension, high-performance XML processing with schema validation, fast MIME/MTOM streaming, SOAP and REST Web API development, WS-* protocols (WS-Security, WS-Policy, WS-ReliableMessaging, etc), XML-RPC and JSON. Licensed under GPLv2. Visit the developer center with guides, tutorials, and examples at www.genivia.com/dev.html The documentation of the toolkit, libraries, plugins and more is available at www.genivia.com/docs.html Commercial-use licenses and expert technical support services are available at competitive pricing levels, please visit www.genivia.com/products.html
    Leader badge
    Downloads: 484 This Week
    Last Update:
    See Project
  • 2
    SwiftyJSON

    SwiftyJSON

    Facilitates the use of JSON data in Swift

    Swift is strictly specific about types. But even if explicit typing is good for avoiding making mistakes, it becomes painful when we're dealing with JSON and other aspects that are, by definition, implicit about types. SwiftyJSON, however, facilitates the use of JSON data in Swift.
    Downloads: 1 This Week
    Last Update:
    See Project
  • 3
    open-dis

    open-dis

    Open-DIS implements the IEEE DIS protocol in multiple languages.

    An open source implementation of the Distributed Interactive Simulation (IEEE-1278) standard in C++, C-Sharp, Objective-C, Java, Javascript and XML. Example applications including sending and receiving native DIS traffic, X-Plane plugin, and WebSocket/Javascript/WebGL applications. See the individual code directories for each package of interest. This project is inactive and has migrated to a GitHub project at https://github.com/open-dis
    Downloads: 1 This Week
    Last Update:
    See Project
  • 4
    FeedKit

    FeedKit

    An RSS, Atom and JSON Feed parser written in Swift

    FeedKit is an RSS, Atom and JSON Feed parser written in Swift. Build a URL pointing to an RSS, Atom or JSON Feed. A common scenario in UI environments would be parsing a feed asynchronously from a user-initiated action, such as the touch of a button. Remember, you are responsible for manually bringing the resulting closure to whichever queue is appropriate. Usually to the Main thread, for UI apps, by calling DispatchQueue.main.async. FeedKit adopts Swift 5 Result type, as Result<Feed, ParserError>, and as such, if parsing succeeds you should now have a Strongly Typed Model of an RSS, Atom or JSON Feed, within the Feed enum. The RSS and Atom feed Models are rather extensive throughout the supported namespaces.
    Downloads: 0 This Week
    Last Update:
    See Project
  • Manage your IT department more effectively Icon
    Manage your IT department more effectively

    Streamline your business from end to end with ConnectWise PSA

    ConnectWise PSA (formerly Manage) allows you to stop working in separate systems, and helps you build a more profitable business. No more duplicate data entries, inefficient employees, manual invoices, and the inability to accurately track client service issues. Get a behind the scenes look into the award-winning PSA that automates processes for each area of business: sales, help desk, support, finance, and HR.
  • 5
    GCDWebServer

    GCDWebServer

    The #1 HTTP server for iOS, macOS & tvOS

    GCDWebServer is a modern and lightweight GCD based HTTP 1.1 server designed to be embedded in iOS, macOS & tvOS apps. Elegant and easy to use architecture with only 4 core classes: server, connection, request and response. Well designed API with fully documented headers for easy integration and customization. Entirely built with an event-driven design using Grand Central Dispatch for best performance and concurrency. No dependencies on third-party source code. Parser for web forms submitted using "application/x-www-form-urlencoded" or "multipart/form-data" encodings (including file uploads). Allow implementation of fully asynchronous handlers of incoming HTTP requests. Minimize memory usage with disk streaming of large HTTP request or response bodies. Automatically handle transitions between foreground, background and suspended modes in iOS apps. Full support for both IPv4 and IPv6.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 6
    HandyJSON

    HandyJSON

    A handy swift json-object serialization/deserialization library

    HandyJSON is a framework written in Swift which makes converting model objects( pure classes/structs ) to and from JSON easy on iOS. Compared with others, the most significant feature of HandyJSON is that it does not require the objects inherit from NSObject(not using KVC but reflection), nor implements a 'mapping' function(writing value to memory directly to achieve property assignment). HandyJSON is totally dependent on the memory layout rules inferred from Swift runtime code. We are watching it and will follow every bit if it changes. To support deserialization from JSON, a class/struct needs to conform to 'HandyJSON' protocol. It's truly protocol, not some class inherited from NSObject. For struct, since the compiler provides a default empty initializer, we use it for free. HandyJSON supports deserialization from the designated path of JSON.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 7
    ObjectMapper

    ObjectMapper

    Simple JSON Object mapping written in Swift

    ObjectMapper is a framework written in Swift that makes it easy for you to convert your model objects (classes and structs) to and from JSON. Once your class implements Mappable, ObjectMapper allows you to easily convert to and from JSON. Use functions to validate JSON prior to object serialization provide an existing cached object to be used for mapping, return an object of another type (which also conforms to BaseMappable) to be used for mapping. For instance, you may inspect the JSON to infer the type of object that should be used for mapping. ObjectMapper supports dot notation within keys for easy mapping of nested objects. ObjectMapper also supports custom transforms that convert values during the mapping process. To use a transform, simply create a tuple with map["field_name"] and the transform of your choice on the right side of the <- operator.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 8
    Wrap

    Wrap

    The easy to use Swift JSON encoder

    Wrap is an easy-to-use Swift JSON encoder. Don't spend hours writing JSON encoding code - just wrap it instead. Using Wrap is as easy as calling wrap() on any instance of a class or struct that you wish to encode. It automatically encodes all of your type’s properties, including nested objects, collections, enums and more. It also provides a suite of simple but powerful customization APIs that enables you to use it on any model setup with ease.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 9
    fm-csv2json

    fm-csv2json

    A CSV Parser that converts CSV into JSON on the FileMaker Pro.

    A FileMaker script which when passed a valid CSV string, will covert this string into a JSON object.
    Downloads: 0 This Week
    Last Update:
    See Project
  • Omnichannel contact center platform for enterprises. Icon
    Omnichannel contact center platform for enterprises.

    For Call centers or BPOs with a very high volume of calls

    Deliver a personalized customer experience with every interaction, across every channel, with uContact, net2phone’s cloud contact center solution.
  • 10
    fm-xml2json

    fm-xml2json

    An XML Parser that converts XML into JSON on the FileMaker Pro.

    A FileMaker script which when passed a valid XML string, will covert this string into a JSON object.
    Downloads: 0 This Week
    Last Update:
    See Project
  • Previous
  • You're on page 1
  • Next