톰캣 서버 메이븐에서 호출하기 pom.xml에 다음 코드를 추가하면 mvn tomcat:run 으로 프로젝트를 실행할 수 있습니다. 설치된 톰캣이 없어도 톰캣은 자동으로 다운로드합니다. org.apache.tomcat.maven tomcat6-maven-plugin 2.1 org.apache.tomcat.maven tomcat7-maven-plugin 2.1 from: http://tomcat.apache.org/maven-plugin-2.1/ & okjsp Scrapbook/개발 및 프로그래밍 2015.01.15
ios8 alertview 텍스트 정렬 문제 iOS8 이전 버전에서 정상이던 AlertView가 iOS8 에서 텍스트가 상단으로 붙어보이는 문제 발생.아래와 같이 간단히 해결. ^^ UIAlertView *alertView = [[UIAlertView alloc] initWithTitle:nil message:@"테스트입니다." delegate: nilcancelButtonTitle:@"확인" otherButtonTitles:nil]; [alertView show]; --> UIAlertView *alertView = [[UIAlertView alloc] initWithTitle:@"" message:@"테스트입니다." delegate: nilcancelButtonTitle:@"확인" otherButtonTitles:nil]; [alertView .. Scrapbook/개발 및 프로그래밍 2014.10.10
[iOS] Xcode5, AppIcon Gloss effects/반사광 제거 ios 6 아이콘에 반사광이 적용되는 부분을 없애려면 . Xcode5에서 Asset Catalog 사용 이전 시점에는 Icon already includes gloss effects을 YES로 하면 적용이 되었지만 Xcode5에서 Asset Catalog 사용 후 부터 반사광이 적용되어버린다. 내부 검수(KT) 반려사항. Xcode5에서 Asset Catalog 사용 후 부터 Icon already includes gloss effects 값을 YES로해도 적용이 먹히지 않을 때는, image asset에서 Appicon의 attribute inspector에서 iOS Icon is pre-rendered를 체크하면 완료. Scrapbook/개발 및 프로그래밍 2013.12.12
[iOS] iPhone의 진정한 url 인코딩(objective-c) 고객 민원 중, iPhone 로그인 시 비밀번호에 = 가 포함되어 있어 로그인이 되지 않는다는 사항이 접수 수정하던 중 비밀번호 전달시 URL인코딩을 하는데 그 인코딩이 "진정한 인코딩"이 아니라는 난감한 사실을 확인-_-;; 바로 요것 --> NSString stringByAddingPercentEscapesUsingEncoding 이 녀석은 /, &, = 등을 인코딩 하지 못한다. 네이버에는 자료가 전무하여 구글링을 해서 발견한 해답. 바로 아래가 진정한 url 인코딩이다. NSString * encodedString = (NSString *)CFURLCreateStringByAddingPercentEscapes( NULL, (CFStringRef)unencodedString, NULL, (CFStr.. Scrapbook/개발 및 프로그래밍 2013.12.10
[iOS] NSNotificationCenter 사용법 간편로그인을 구현하면서 NSNotificationCenter 가 사용되었는데 사용법을 몰라 헤메다 좋은글을 발견했다. 문제가 유발되었던부분은 옵저버를 제거해주지 않아 발생된 다중 Noti ... 아래글에서 노티피케이션은 옵저버나 옵저버가 관심있는 객체를 리테인하지 않기 때문에 사용 후에는 노티피케이션센터에 등록된 옵저버를 제거 해주어야 합니다. 메모리를 해제해주는 dealloc 메서드에 [[NSnotificationCenter defaultCenter] removeObserver:self];를 추가하면 됩니다. 는 아주 중요한 내용이다. -일반적인 노티피케이션 사용법- :노티피케이션 센터에 등록을 해서 사용 1. 노티피케이션을 보내는 객체 // NSNotificationCenter 객체를 선언하여 def.. Scrapbook/개발 및 프로그래밍 2013.12.05
IIS HTTP Err Log 중 Connection_Dropped 오류 HTTP 에러 로그 중 Connection_Dropped는 자칫 IIS서버 문제로 인식하여 서버에 중점을 두고 튜닝을 하는 경우가 많다. 이 경우는 클라이언트 문제다. Connection_Dropped The connection between the client and the server was closed before the server could send its final response packet. The most common cause of this behavior is that the client prematurely closes its connection to the server. 서버가 최종 응답 패킷을 전송하기 전에 클라이언트와 서버 간 연결이 닫혔습니다. 이 동작의 가장 일반적인 원인은.. Scrapbook/개발 및 프로그래밍 2013.11.26
[ios] NSString 문자열 삽입 UIAlertView *alertView = [[UIAlertView alloc] initWithTitle:@"알림" message:[NSString stringWithFormat:@"\n%@\n어쩌구 저쩌구.","첨가할 텍스트 또는 변수"] delegate:self cancelButtonTitle:@"취소" otherButtonTitles:@"이동",nil]; Scrapbook/개발 및 프로그래밍 2013.10.25
[iOS] 웹뷰 스크롤 방지 간단하게 myWebView.scrollView.bounces = NO; ^^ Stop UIWebView from "bouncing" vertically? Scrapbook/개발 및 프로그래밍 2013.10.16
[iOS] 웹뷰 백그라운드 투명 처리 웹뷰의 html을 라운드 형태로 디자인 한후 팝업 등으로 사용할 때 배경의 투명 처리가 필요한데 그때 사용하면 굿! - (void)makeBodyBackgoundTransparent { for (UIView *subview in [webView subviews]) { [subview setOpaque:NO]; [subview setBackgroundColor:[UIColor clearColor]]; } [webView setOpaque:NO]; [webView setBackgroundColor:[UIColor clearColor]]; } 구글링의 힘은 역시나 크다. 네이버는 너무 빈약~ Scrapbook/개발 및 프로그래밍 2013.10.16
[IOS] 화면 강제 밝기 후 이전 밝기 설정 복원 유지보수 하는 앱에서 고객이 편의점에 모바일 바코드를 제시할 때 가장 밝은 밝기로 보여주고 꺼지기 않게 해달라는 오더가 있어 아래와 같이 처리.헤더 파일에 우선 CGFloat oldBrightness;정의 후 - (void) viewWillDisappear:(BOOL)animated { [super viewWillDisappear:animated]; if ([[UIScreen mainScreen] respondsToSelector:@selector(brightness)]) { [[UIScreen mainScreen] setBrightness:oldBrightness]; } } - (void)viewDidLoad { [super viewDidLoad]; oldBrightness = [[UIScreen ma.. Scrapbook/개발 및 프로그래밍 2013.10.11