MSStickerBrowserViewDataSource
The protocol for dynamically providing stickers to a browser view.
Declaration
protocol MSStickerBrowserViewDataSource : NSObjectProtocolOverview
To load its stickers, the MSStickerBrowserView class performs the following steps:
The browser calls the data source’s numberOfStickers(in:) method to get the number of stickers.
The browser repeatedly calls the data source’s stickerBrowserView(_:stickerAt:) method to load the individual stickers. Initially, the browser requests only enough stickers to fill the screen. The browser requests additional stickers as the user scrolls and new stickers become visible.
Both methods are required. If the sticker collection changes at runtime, call the MSStickerBrowserView class’s reloadData() method to reload the stickers.