앱에 별점을 주는 프레임워크 Appirater https://github.com/arashpayan/appirater
위에서 파일을 다운로드 받고 (또는 cocoPods, git 등등)으로 관련 파일 3개(Appirater.h, Appirater.m, AppiraterDelegate.h)를 프로젝트에 복사한다.
그리고 AppDelegate.m 구현파일을 아래와 같이 수정한다. 그리고 빌드를 다시 하면 자신이 설정한 주기 마다 별점 평가를 위한 팝업창이 뜬다.
#import "Appirater.h"
@implementation AppDelegate
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
// Override point for customization after application launch.
[Appirater setAppId:@"자신의 AppID"];
[Appirater setDaysUntilPrompt:7];
[Appirater setUsesUntilPrompt:5];
[Appirater setSignificantEventsUntilPrompt:-1];
[Appirater setTimeBeforeReminding:2];
[Appirater setDebug:NO]; // 테스팅을 할 때 YES로 바꾸면 실행할 때 마다 나타나게 된다.
[Appirater appLaunched:YES];
return YES;
}
'iDev > iOS Dev' 카테고리의 다른 글
iOS 버전 호환 간단 버전 (0) | 2014.03.16 |
---|---|
iOS GameCenter에 로그인 안될 때 (0) | 2014.03.14 |
SpriteKit에 iAd, AdMob 붙이기 (0) | 2014.02.21 |
SpriteKit에서 현재 화면 캡쳐 및 트위터 공유하는 방법 (0) | 2014.02.12 |
cocos2d에서 현재 화면 캡처하는 방법 (0) | 2014.02.10 |