Questions tagged [promisekit]

PromiseKit is a groundbreaking implementation of Promises in both Objective-C and Swift. This innovative framework also offers a variety of useful helper functions that simplify the common asynchronous patterns frequently encountered in iOS development, making the process more enjoyable and efficient.

Connecting Alamofire calls using Swift and PromiseKit

My current setup involves utilizing two API endpoints, with the second dependent on the result of the first. The initial endpoint is /api/v1/regions/, which provides a JSON list of regions structured like this: { region_id: 1, mayor_id: 9 }, { regi ...