BinanceAPIForOC

binance-oc-api is a lightweight Object-C library for interacting with the Binance API, providing complete API coverage, and supporting asynchronous requests.

Features

Examples

Getting Started

There are three main client classes that can be used to interact with the API:

[PCNetworkClient], an asynchronous Binance API client;

[PCNetworkClient setupApiKey:@"" apiSecret:@""];
[PCNetworkClient lastPriceForAllSymbolWithCompletion:^(NSError *error, NSArray *responseObj) {
    self.symbolListArray = responseObj;
    [self.tableView reloadData];
}];