반응형


반응형
반응형

Sencha Touch 2 Build Mobile Web Apps with HTML5

Buy Support Download

Sencha Touch 2 hero

The Best Framework Just Got Better

Build HTML5 mobile apps for iPhone, Android, and BlackBerry.

Watch VideoWith over 50 built-in components, state management, and a built-in MVC system, Sencha Touch 2 provides everything you need to create immersive mobile apps.

View Examples


반응형
반응형
http://msdn.microsoft.com/ko-kr/windows/apps/
반응형
반응형

국산 하이브리드 모바일 어플 프레임워크라는군요.

http://wapplejs.com/


Getting Started with WApplE.js




반응형
반응형

2012.04 현재 분포되어 있는 디바이스 버전별 현황

2012.04 현재 분포되어 있는 디바이스 버전별 현황2012.04 현재 분포되어 있는 디바이스 버전별 현황. The following pie chart and table is based on the number of Android devices that have accessed Google Play within a 14-day period ending on the data collection date noted below.


안드로이드 버전별 정리

* 현재 시점에 아이스크림으로 업데이트한 갤럭시 S2에서 많은 문제점을 보이고 있다.


 

 코드네임

 내용

 

 Ice Cream Sandwich 4.0

 Simple, Beautiful, Useful ?

태블릿과 스마트폰 공용OS

 

 Honeycom 3.~

 태블릿 전용

 

 Gingerbread 2.3

인터넷접속으로 OS업데이트,

NFC지원 등등

 

 Froyo 2.2

 
 

 Eclair 2.0/2.1

 
 

 Donut 1.6
 
   Cupcake 1.5
 
   B Android 1.1
 Android 1.0
 




반응형
반응형
데이터아키텍처 자격증이 있는데, 과연 실효성이 있는것일까? 민간자격증 3개에 국가자격증 1개라.
갑(甲)업체의 선택은?

: 데이터아키텍처(DA, Data Architecture)란 기업의 모든 업무를 데이터 측면에서 처음부터 끝까지 체계화하는 것입니다.

http://www.dbguide.net/da.db?cmd=snb2_1
www.dbguide.net
※ 합격예정자가 '8단계. 최종합격자 공고 및 확인'의 결과 최종불합격 되었을 경우에 검정센터를 통해 불합격사유를 확인할 수 있으며, 이의신청을 할 수 있
반응형
반응형

phonegap에서 webview가 위아래로 움직이는걸 멈추고 싶을때.
화면이 위아래나 좌우로 흔들리는걸 막을때.

~delegate.m


[[
webView.subviews objectAtIndex:0] setScrollEnabled:NO]; //to stop scrolling completely
[[webView.subviews objectAtIndex:0] setBounces:NO]; //to stop bouncing

------
document.onload = function(){
    document.ontouchmove = function(e){ e.preventDefault(); }
};


반응형
반응형

- (void)webViewDidStartLoad:(UIWebView *)theWebView
{
     theWebView.dataDetectorTypes = UIDataDetectorTypeNone;
     return [ super webViewDidStartLoad:theWebView ];
}

반응형

+ Recent posts