일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- embedd
- v8 engine xcode build
- FlexiblePageView
- JavaScript Engine
- Google V8 Engine
- 안드로이드
- apns
- V8 Engine
- ios
- IMAGE
- Magnify Anim
- IOS10
- ios framework
- Objective C
- PageControl
- SO 파일
- so file
- apk 다운사이징
- Push
- apache
- Status Bar
- sha1 convert hashkey
- 공인인증서 정보
- Android NDK시스템
- Android
- 인증서 정보 뽑아내기
- android log dump
- appbarlayout
- 공인인증서 만료일
- java
- Today
- Total
목록전체 글 (55)
caTea 블로그
+ (NSString*) makeJsonText:(NSDictionary*)jsonDict{ NSError *error = nil; SBJsonWriter* jsonWriter = [[SBJsonWriter alloc] init]; NSString * jsonText = [jsonWriter stringWithObject:jsonDict error:&error]; [jsonWriter release]; return jsonText; } + (NSDictionary*) parserJsonText:(NSString*) jsonText{ SBJsonParser *parser = [[SBJsonParser alloc] init];// JSON 문자열을 객체로 변환NSDictionary* dict = [parse..
//유틸파일에 선언 private static long LAST_CLICK_TIME = 0; public static boolean duplicateClickCheck(){long clickTime = System.currentTimeMillis(); boolean doubleClick = false; if(clickTime - LAST_CLICK_TIME
public static ProgressDialog mProgressDialog = null; public static void showProgressDialog(Context context){try{Log.d(TAG, "showProgressDialog call!");if(mProgressDialog == null){mProgressDialog = new ProgressDialog(context);mProgressDialog.setCancelable(false);mProgressDialog.setIndeterminate(true);} if(mProgressDialog.isShowing() == false){mProgressDialog.show();Log.d(TAG, "progressDialog.show..