Wuyx
2017-01-19 4ba21003fabf854de745fa4f89db1bfd348ecb49
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
/*
 * CBMoreAppsBadge.h
 * Chartboost
 * 6.6.0
 *
 * Copyright 2011 Chartboost. All rights reserved.
 */
 
/*!
 @class CBMoreAppsBadge
 
 @abstract
 Class for creating a UIVIew that will display the number of applications displayed
 on the more applications page. It is meant to be placed over a button that will display the more applications page.
 
 @discussion For more information on integrating and using the Chartboost SDK
 please visit our help site documentation at https://help.chartboost.com
 */
@interface CBMoreAppsBadge : UIView
 
/*!
 @abstract
 Returns a badge view with the number of unviewed applications on the More Applications page.
 
 @return CBMoreAppsBadge a badge view.
 
 @discussion This method returns a customizable badge that by default displays the number of applications displayed
 on the more applications page. It is meant to be placed over a button that will display the more applications page.
 */
+ (CBMoreAppsBadge *)moreAppsBadge;
 
@end