RichieBooksBookPresentationState

Objective-C

NS_ENUM(NSInteger, RichieBooksBookPresentationState)
{
	RichieBooksBookPresentationState_Unpresentable				= 0,	// For example, before has been downloaded
	RichieBooksBookPresentationState_Preparable					= 1,
	RichieBooksBookPresentationState_PreparingForPresentation	= 2,
	RichieBooksBookPresentationState_Presentable				= 3,
}

Swift

enum RichieBooksBookPresentationState : Int, @unchecked Sendable

Undocumented