Development 썸네일형 리스트형 [iOS] UITextField Padding 값주기 헤더@interface UITextField (Padding) {}//end Variables -(void) setLeftPadding:(int) paddingValue;-(void) setRightPadding:(int) paddingValue; @end 구현 부@implementation UITextField (Padding) -(void) setLeftPadding:(int) paddingValue { UIView *paddingView = [[UIView alloc] initWithFrame:CGRectMake(0, 0, paddingValue, self.frame.size.height)]; self.leftView = paddingView; self.leftViewMode = UITextFiel.. 더보기 [IOS Library] 이미지 Blur 처리해주는 라이브러리 PurposeFXBlurView is a UIView subclass that replicates the iOS 7 realtime background blur effect, but works on iOS 5 and above. It is designed to be as fast and as simple to use as possible. FXBlurView offers two modes of operation: static, where the view is rendered only once when it is added to a superview (though it can be updated by calling setNeedsDisplay or updateAsynchronously:completion:.. 더보기 [IOS Library] 이미지에서 색상값 추출 LEColorPickerA Cocoa-Touch system for getting a color scheme in function of an image, like iTunes 11 does. It is designed as a general purpose class set, in wich LEColorPicker is the interface for your client code. 이동하기 더보기 Hibernate Incorrect datetime value Incorrect datetime value 잘 입력되었던 데이터가 갑자기 위와 같은 문구를 보여주면서 에러를 내기 시작했다. 이유는... TIMESTAMP 때문이다. TIMESTAMP의 범위는 1970-01-01 부터 2038-01-19 까지라서 1970 이하 날짜를 입력하지 못하는 것이다. 자세한 사항은 여기서 살펴보자~! 더보기 org.hibernate.hibernateexception identifier of an instance of was altered from to 위와 같은 에러가 발생했을 때는 Model의 Id 부분을 확인하자 본인의 경우 착각으로 인해 Id 값을 바꾸려고 하다보니 생긴 에러였다. 본인의 경우 Model의 ID부분을 다른 타입으로 변경하여 의도적으로 문법을 틀리게 하여 찾았다. 더보기 [Javascript] js 파일 불러오기 Spring3에서 불러올때.. 더보기 [Javascript] DatePicker 달력이 나오는 간단한 DatePicker 이다. jQuery UI Datepicker - Default functionality $(function() { $( "#datepicker" ).datepicker(); }); Date: 관련 API 는 여기서~! 더보기 JQuery Select Box 제어 1. jQuery로 선택된 값 읽기 $("#selectBox option:selected").val();$("select[name=name]").val(); 2. jQuery로 선택된 내용 읽기 $("#selectBox option:selected").text(); 3. 선택된 위치 var index = $("#test option").index($("#test option:selected")); 4. Addoptions to the end of a select $("#selectBox").append("Apples");$("#selectBox").append("After Apples"); 5. Addoptions to the start of a select $("#selectBox").prepend(".. 더보기 [Java] 패키지 탐색하기~! Java에서 Reflection을 편리하게? 사용하기 위한 라이브러리가 있다. 아래와 같이 사용하면 된다.~! 1. 라이브러리 추가 org.reflections reflections 0.9.9-RC1 2. 사용법Reflections reflections = new Reflections("my.project.prefix"); Set> annotated = reflections.getTypesAnnotatedWith(SomeAnnotation.class); Reflections reflections = new Reflections("my.package.prefix"); //or Reflections reflections = new Reflections(ClasspathHelper.forPackage("my... 더보기 [Hibernate] 구분자 열 사용하기 테이블에 구분자 열을 추가하여 구분자 열로 Model을 생성하는 방법이 있다.우선 Super 클래스 에서는 아래와 같이 작성 @DiscriminatorColumn (name = "type",discriminatorType = DiscriminatorType.STRING) public abstract class Info { Child 클래스 에서는 아래와 같이 작성 @DiscriminatorValue (value = "MOVIE") public class MovieInfo extends Info 이와 같이 사용하면 되고 상속 전략에 따라서 @Inheritance 바꾸어서 사용하자 더보기 이전 1 ··· 11 12 13 14 15 16 17 ··· 38 다음