This article is not available in your language, so the default english version is displayed instead.
#Poool Access iOS
Poool Access for iOS is a Swift framework that allows you to easily integrate Poool Access to create beautiful & dynamic walls in your iOS application.
#Requirements
#Migration from v1 to v2
The only notable change when going from v1 to v2 is the need to get rid of the .instanciate()
method, and treat Access
as a regular class.
Simply replace:
try? Access.instanciate(key: "<your app id>")
Access.config(...)
with:
var access = Access(key: "<your app id>")
access.config(...)