분류 전체보기(344)
-
NSNotification
## UIApplicationSignificantTimeChangeNotification : 날짜 시간이 변경될때 알림 NSNotificationCenter *noteCenter = [NSNotificationCenter defaultCenter]; [noteCenter addObserver:self selector:@selector(notiSignificantTimeChanged:) name:UIApplicationSignificantTimeChangeNotification object:nil]; - (void)notiSignificantTimeChanged:(NSNotification *)notification { }
2021.05.31 -
NSArray - indexOfObject, indexOfObjectIdenticalTo
# indexOfObject - (NSInteger)indexOfObject:(id)anObject; index 0부터 끝까지 anObject와 isEqual을 이용해 같은 객체를 찾는다. # indexOfObjectIdenticalTo - (NSInteger)indexOfObjectIdenticalTo:(id)anObject; index 0부터 끝까지 anObject의 주소가 일치하는 객체를 찾는다. 값이 같다고 해서 같은 주소를 가지고 있는 객체는 아니다.
2021.05.21 -
[Excel] 선택된 행/열 강조 표시하기
## 행 강조 1. 눌렸을때 강조되길 원하는 셀(Cell)만 선택 2. 홈 > 조건부서식 > 새규칙 클릭 3. "수식을 사용하여 서식을 지정할 셀 결정" 항목 선택 4. "규칙 설명 편집(E)" > "다음 수식이 참인 값의 서식 지정(O)" 칸에 아래 공식 입력 =ROW()=CELL("row") 5. 서식(F) 선택 후 원하는 배경색 지정 6. 확인 ## 열강조 1. 새규칙 클릭 2. "수식을 사용하여 서식을 지정할 셀 결정" 항목 선택 3. "규칙 설명 편집(E)" > "다음 수식이 참인 값의 서식 지정(O)" 칸에 아래 공식 입력 =COLUMN()=CELL("col") 4. 서식(F) 선택 후 원하는 배경색 지정 5. 확인
2021.05.20 -
CODEF API 오류코드
https://docs.google.com/spreadsheets/d/18ycUlD9iT96of30utYl3DzsY23rPfeGp7FpjTmED-zY/edit#gid=0 API 오류코드 오류코드 오류 대분류,오류 중분류,오류 코드,오류 코드 설명,ERROR USER,조치사항 / 추가설명,비고 CODEF 엔진 오류,엔진오류,CF-11000 ~ CF-11999,11000번대 오류 코드,CODEF 솔루션(Lib) 오류, CODEF 문의 기타, docs.google.com 인터넷 검색중 찾은 자료입니다. 저작권에 문제가 있을시 연락해주시면 삭제하겠습니다.
2021.05.17 -
NSMutableAttributedString
# 기본 NSString* strText = @"가나다라 1234 ABCD abcd"; NSMutableAttributedString *attString = [[NSMutableAttributedString alloc] initWithString:strText]; # 폰트(Font) 설정 UIFont *font = [UIFont fontWithName:@"Helvetica-Bold" size:15.0f]; [attString addAttribute:NSFontAttributeName value:font range:NSMakeRange(0, strText.length)]; # 색상(Color) 설정 UIColor *color = [UIColor redColor]; [attString addAttribute..
2021.05.11 -
[XIB] UILabel
## 폰트사이즈 최소 Scale 지정해서 줄이기 Show the Attributes inspector (Option + Command + 5) Autoshrink : Minimum Font Scale
2021.05.10