일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- ios
- java
- 인증서 정보 뽑아내기
- appbarlayout
- Magnify Anim
- V8 Engine
- SO 파일
- sha1 convert hashkey
- apache
- JavaScript Engine
- Status Bar
- apk 다운사이징
- IMAGE
- ios framework
- Push
- IOS10
- 안드로이드
- apns
- PageControl
- v8 engine xcode build
- embedd
- so file
- FlexiblePageView
- Android NDK시스템
- 공인인증서 만료일
- 공인인증서 정보
- android log dump
- Google V8 Engine
- Android
- Objective C
- Today
- Total
목록전체 글 (55)
caTea 블로그
/** * 디바이스 타입을 리턴한다 * * @return 해상도에 따른 디바이스 타입(0:default, 1:iPhone6(s), 2:iPhone6+(6s+)) */+ (int) deviceType{ int returnVal = DEVICE_DEFAULT; CGRect screenSize = [[UIScreen mainScreen] bounds]; int height = screenSize.size.height; switch (height) { case 667: //6 returnVal = DEVICE_6; break; case 736: //6Plus returnVal = DEVICE_6_PLUS; break; default: //default.. 480, 568, etc.. break; } return..
package com.ubist.tourtainment.mos.common.views; import android.content.Context;import android.support.v4.view.ViewPager;import android.util.AttributeSet;import android.view.MotionEvent;import android.view.View; public class VerticalViewPager extends ViewPager{private final String TAG = "VerticalViewPager"; public VerticalViewPager(Context context) { this(context, null); } public VerticalViewPag..
/* * Copyright (C) 2015 Vincent Mi * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS,..